Fork me on GitHub
#graphql
<
2017-09-27
>
eoliphant13:09:11

Hi does any one know if lacinia supports paging?

eoliphant13:09:36

@hmaurer,that’s what I’ve been playing with since datomic doens’t have ‘objects’ jsut working on a mapper to create the graphql etc

hlship16:09:15

Paging is a concept that can be implemented on top of Lacinia, typically using arguments on fields that returns lists of values. There's no particular standard on how that is implemented. Alternately, you can use subscriptions as a way to get partial/initial data to the client fast.

hlship16:09:46

Again, Lacinia doesn't know where your data comes from, it's just the contract between a client and a server; all logic comes from the application.