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
- Host: GitHub
- URL: https://github.com/prabaprakash/graphql_dot_net_base_app
- Owner: prabaprakash
- Created: 2018-01-30T13:15:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-30T13:20:47.000Z (over 7 years ago)
- Last Synced: 2025-01-14T09:54:39.445Z (5 months ago)
- Topics: csharp, dotnet, graphql, graphql-dotnet, linq
- Language: C#
- Homepage:
- Size: 3.12 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```