Tag: supabase
-
how i can create a function in flutter using graphQL to register a user in supabase platform?
-2 the problem is specifically related to user registration using GraphQL on the Supabase platform, and you’re seeking help to resolve it. this the function i use Future<void> registerEmployee( String email, String password, BuildContext context) async { try { setIsLoading = true; if (email.isEmpty || password.isEmpty) { throw ‘All Fields are required’; } const String…
-
How can I paginate in supabase/GraphQL?
0 When I have a query: { postsCollection(first: 10) { pageInfo { hasNextPage, hasPreviousPage, startCursor, endCursor } edges { cursor node { id title } } } } I return only the next and previous cursors. I need to know how many pages there are in total. Furthermore, how can I navigate to an arbitrary…
-
Graphql pagination
0 How to create pagination in supabase with graphql. When I have query: { postsCollection(first: 10) { pageInfo { hasNextPage, hasPreviousPage, startCursor, endCursor } edges { cursor node { id title } } } } I return olny coursor next and previus and I don’t know how many page is in pagination and next whan…