Release 0.3.3 (#4622)

* Release 0.3.3

* Fix tests
This commit is contained in:
Charles Bochet
2024-03-22 17:28:53 +01:00
committed by GitHub
parent 4ae67318ab
commit 3c5c9c2f31
8 changed files with 52 additions and 10 deletions

View File

@ -21,6 +21,31 @@ export const query = gql`
}
`;
export const findManyViewsQuery = gql`
query FindManyViews($filter: ViewFilterInput, $orderBy: ViewOrderByInput, $lastCursor: String, $limit: Float) {
views(filter: $filter, orderBy: $orderBy, first: $limit, after: $lastCursor) {
edges {
node {
__typename
id
objectMetadataId
type
createdAt
name
updatedAt
}
cursor
}
pageInfo {
hasNextPage
startCursor
endCursor
}
totalCount
}
}
`;
export const variables = {
input: {
object: {