You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package completely follows to Relay Cursor Connections Specification (https://facebook.github.io/relay/graphql/connections.htm).
8
8
9
-
Besides standard connection arguments `first`, `last`, `before` and `after`, also added great arguments:
9
+
Besides standard connection arguments `first`, `last`, `before` and `after`, also added significant arguments:
10
10
*`filter` arg - for filtering records
11
11
*`sort` arg - for sorting records. Build in mechanism allows sort by any unique indexes (not only by id). Also supported compound sorting (by several fields).
Modules `graphql` and `graphql-compose` are in `peerDependencies`, so should be installed explicitly in your app. They have global objects and should not have ability to be installed as submodule.
21
+
Modules `graphql` and `graphql-compose` are in `peerDependencies`, so should be installed explicitly in your app. They should not installed as submodules, cause internally checks the classes instances.
22
22
23
23
24
24
Example
@@ -76,7 +76,7 @@ Types should have following resolvers:
0 commit comments