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
Describe the bug
I'm not sure if graphql-coden-csharp is in cause but I cannot see the default value of input type field when I'm using HandleBars.
When I show the content of the input node from the handle bars point of view I have this:
# The best query of the worldtypeQuery
{
merchants(input:OrderByInput):[Merchant]
}
schema{
query: Query
}
typeMerchant
{
code: String!
}
enumDirection{
ASCENDING,
DESCENDING,
}
enumMerchantOrderBy
{
CREATION,
MODIFICATION
}
inputOrderByInput
{
# The column you want to make the order byby: MerchantOrderBy! = CREATIONdirection: Direction! = DESCENDING
}
I can transform without any lost into an Introspection schema using the graphql-code-generator:
Describe the bug
I'm not sure if graphql-coden-csharp is in cause but I cannot see the default value of input type field when I'm using HandleBars.
When I show the content of the input node from the handle bars point of view I have this:
To Reproduce
Steps to reproduce the behavior:
I can transform without any lost into an Introspection schema using the graphql-code-generator:
gql-gen ...
gql-gen --schema "schema.graphql.json" --template graphql-codegen-csharp --out "schema.generated.cs"
Expected behavior
I expect to see the properties in the input field:
Environment:
The text was updated successfully, but these errors were encountered: