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 library uses [graphql-java v3.0](https://github.com/andimarek/graphql-java) to derive and build the GraphQL schema from JPA Entity Schema provided by entity classes.
9
+
This library uses [graphql-java 6.0](https://github.com/andimarek/graphql-java) to derive and build the GraphQL schema from JPA Entity Schema provided by entity classes.
10
10
11
11
It implements a schema builder to generate GraphQL Schema using JPA EntityManager with JPA Query Data Fetchers that transform GraphQL queries into JPA queries with flexible type safe criteria expressions and user-friendly SQL query syntax semantics i.e. query by page, , where criteria expressions, select, order by etc.
12
12
@@ -28,23 +28,23 @@ For GraphQL JPA Annotations use:
Building with jitpack.io [](https://jitpack.io/#introproventures/graphql-jpa-query)
@@ -63,23 +63,23 @@ For GraphQL JPA Annotations use:
@@ -268,14 +268,14 @@ Just like a REST API, it is possible to pass variable arguments to an endpoint i
268
268
269
269
Pagination
270
270
----------
271
-
GraphQL does not specify any language or idioms for performing Pagination. This library provides support for pageable queries with `page` argument on pluralized query wrapper.
271
+
GraphQL does not specify any language or idioms for performing Pagination. This library provides support for pageable queries with `page` argument on pluralized query wrapper. Tha page start is 1-based, i.e. provide 1 as value for `start` parameter to request the first page with the number of records in the limit argument value.
272
272
273
273
This allows you to query for the "Page" version of any Entity, and return page metadata i.e. pages and total records count with the select data.
0 commit comments