DotNetGraphQLQueryGen icon indicating copy to clipboard operation
DotNetGraphQLQueryGen copied to clipboard

Generate dotnet interfaces/classes from a GraphQL schema to perform type-safe querying from dotnet

Results 1 DotNetGraphQLQueryGen issues
Sort by recently updated
recently updated
newest added

Input argument with enum array "sex: [Sex!] = null" ``` input FilterBy { field: String! value: String! sex: [Sex!] = null } ``` Test: ``` public void TestComplexListEnumArg() { TestClient...