I'm using KeystoneJS graphql as my backend and they schema look like this:
items(
where: ItemWhereInput! = {}
orderBy: [ItemOrderByInput!]! = []
take: Int
skip: Int! = 0
): [item!]
KeystoneJS using take and skip instead of offset and limit. Is there a way to support those variable names?
I'm using KeystoneJS graphql as my backend and they schema look like this:
KeystoneJS using take and skip instead of offset and limit. Is there a way to support those variable names?