An open API service indexing awesome lists of open source software.

https://github.com/prabaprakash/graphql_dot_net_base_app

GraqlQL - Dot Net Basic Application
https://github.com/prabaprakash/graphql_dot_net_base_app

csharp dotnet graphql graphql-dotnet linq

Last synced: 3 months ago
JSON representation

GraqlQL - Dot Net Basic Application

Awesome Lists containing this project

README

        

# GraphQL_DOTNET_Base_App

GraphQL Dot Net basic example - Console App

# Query
```
query {
authors (name: ""Nicholas Cage"") {
id
name
country
books{
name
id
genres {
name
id
}}}}
```
# Covered
```
Object
List
Resolve
Params
```

# Packages
```
GraphQL version="0.17.3"
GraphQL-Parser version="2.0.0"
Newtonsoft.Json version="9.0.1"
```

# Framework
```
TargetFramework="net45"
```