Graphql without a server

168 views Asked by At

I'd like to include an embedded graphql processor in my .net app.

I want to execute GraphQL functions via a method and I don't need the server or an endpoint.

Basically an internal GraphQL processor. I'll define the resolvers and the schema and then run queries via a method call. Is this possible?

1

There are 1 answers

0
Dmitriy On

You may take a look NReco.GraphQL (which is based on GraphQL.Net but has an additional features, like aggregation, filter, ect.). You can compose in code schema, query (or query object) and call it just in-code.