Tag: graphql-schema
-
How to decide merge order schemas graphql codegen
0 I’m trying to merge two separate graphql schemas one which is provided by my CMS endpoint and a local schema for additional typehinting (my CMS schema isn’t precise enough). Is there a way to configure the merge order in the graphql codegen config? I’ve been able to merge both schemas and handle the override…
-
StrawberryShake graphql init command return Object reference not set to an instance of an object
0 I’m trying to use StrawberryShake library to build a GraphQL client app. When executing dotnet graphql init https://public-api.shiphero.com/graphql –headers Authorization="xxxxxxxxxxx" command in Visual Studio Developer PowerShell window, it downloads the schema ok, but then generates error of "Object reference not set to an instance of an object". Does anyone know what to do to…
-
How to declare Array Of Objects in TypeORM Graphql Schema?
0 I am working with 2 Postgres Models – users and posts, where each user can have multiple posts (One to Many Relation). Here I need to make a user profile function to access data of single user along with the associated posts. I have made the following schema.ts file for the same – import…
-
All GraphQL SDL schema fields shown as depreciated in GraphQL-Voyager regardless if they actually are
0 I’m trying to check my GraphQL Schema created in SDL using "GraphQL-Voyager", but it always shows all fields are "DEPRECATED" even when none of them are declared as deprecated. For an example, the following simple schema would encounter the issue: schema { query: Query } type Query { get_CONTACTS( id: ID! ): CONTACTS }…
-
What techniques have you used to manage the complexity of your GraphQL schema? [closed]
-3 Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers. We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations. Closed…