graphql-net icon indicating copy to clipboard operation
graphql-net copied to clipboard

Convert GraphQL to IQueryable

Results 43 graphql-net issues
Sort by recently updated
recently updated
newest added

For GraphQL to be realistically useful it needs to be possible to integrate security restrictions into the schema. These commonly take 2.5 forms: 1. Filters that silently hide data from...

Hi, I'm trying to write an automated entityFramework implementation schema builder on GraphQL.Net. And I'm generating the Args Type dynamically with System.Reflection.Emit namespace methods. Everything seems to be Ok when...

Is there a way to send the variable $episode in following example? ```graphql query HeroNameAndFriends($episode: Episode) { hero(episode: $episode) { name friends { name } } } { "episode": "JEDI"...

I'm playing with graphql-net and I really like it. One thing that I can't figure out is how args are deserialized. It seems that camelCase/pascalCase conversion is not working for...

I'd submit a PR but I'm unclear exactly how it's used, myself :) [`GraphQLSchema`](https://github.com/ckimes89/graphql-net/blob/ba5b50e7017cc2903fa0c30e6d05efce31bd382c/GraphQL.Net/GraphQLSchema.cs) defines a method `AddScalar`, which has something to do with validating and translating scalar types. It's...

Submitting this as a question or discussion point, as much as an issue. [GraphQLTypeBuilder](https://github.com/ckimes89/graphql-net/blob/ba5b50e7017cc2903fa0c30e6d05efce31bd382c/GraphQL.Net/GraphQLTypeBuilder.cs) adds fields using [ToCamelCase](https://github.com/ckimes89/graphql-net/blob/272454e9e88cb7081d4b05b8b9fb945233e207e1/GraphQL.Net/StringExtensions.cs) when the name isn't explicitly supplied. (The implementation just lowercases the first...

See spec here: https://facebook.github.io/graphql/#sec-Introspection #7 has to be finished before this can be started.

Depends heavily on #17 . It should be possible for me, when defining my schema, to plug my own numbers into the complexity estimate system. For example, `user.Commits` may have...

https://facebook.github.io/graphql/#sec-Deprecation

At some point we'll need to support defining whether a field or argument is nullable or non-nullable. As for now, a decent starting point will just be forcing the nullability...