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 […]
0 I have a mysql table, which i want to represent using graphQL, I have tried something using ariandne, and i am able to get the rows. Now, I want to introduce functionality of where clause as well, One way could be to have a resolver for each column, but that has its limitations, and […]
11 When I use the following minimal code in an c++ ConsoleApp in VS2019, I get two warnings, which are completely opposite. int main() { unsigned char op1 = 0x1; unsigned char op2 = 0x3; unsigned char result1 = op1 | op2; unsigned char result2 = op1 || op2; } The warning at unsigned char […]
0 Faced the problem of getting errors from graphql in nest.js when the data does not pass validation. I wrote a global filter to bring it all to a single format, but it doesn’t want to work, or rather it works, but graphql wraps everything in a bunch of data and originalError GraphQLModule.forRoot<ApolloDriverConfig>({ driver: ApolloDriver, […]
0 I have been tasked to create separate user model for third_party users who are to access our endpoint so i created separate user named ApiCliet and inherited the Abstract user model of Django i also created a custom authentication for that user model only and then crated two mutation to create an api client […]
1 I’m new to graphql and hope someone can explain me this ID type that is always string. As said in the docs: The ID scalar type represents a unique identifier, often used to re-fetch an object or as a key for a cache. If you use, for example, some caching client like Apollo, each […]
9 I have a template class taking several non-type arguments (GPIO descriptors). Auto is used to allow several different GPIO implementations to be used. These implementations can’t derive from a common base class. Can I use a concept to restrict these arguments to ones with the right interface? I got a concept but it’s not […]
0 I am using GraphQL in my SpringBoot app. While the CRUD operations are running for single objects, I am facing the issue of Invalid Syntax for nested objects. Please find the code below and suggest. graphql type Book { isn: Int title: String author: String publishedDate: String publisher: Publisher! } input PublisherInput { pId […]
0 I have the following code designed to apply a list of errors to resolved items by fetching the full list of errors from another service which that caches them for performance reasons: public class MyEntityExtensions : ObjectType<MyEntity> { protected override void Configure(IObjectTypeDescriptor<MyEntity> descriptor) { descriptor .Field("errors") .Type(typeof(List<Error>)) .Resolve(async context => { var errorCache = […]
7 I’m trying to follow along this article on how to create a mutation on a rails server using GraphQl https://www.howtographql.com/graphql-ruby/4-authentication However, I’m stuck at the CreateUser Mutation step, I get the follow error hash when trying it out in GraphiQL: { “errors”: [ { “message”: “Field ‘createUser’ is missing required arguments: input”, “locations”: [ […]