https://github.com/tarekmansour/graphql-server-side
Getting started with GraphQL for server side with .NET
https://github.com/tarekmansour/graphql-server-side
dotn dotnet-core graphql graphql-server
Last synced: 3 months ago
JSON representation
Getting started with GraphQL for server side with .NET
- Host: GitHub
- URL: https://github.com/tarekmansour/graphql-server-side
- Owner: tarekmansour
- License: mit
- Created: 2023-09-01T17:30:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-06T17:31:35.000Z (over 1 year ago)
- Last Synced: 2025-01-11T14:31:49.191Z (5 months ago)
- Topics: dotn, dotnet-core, graphql, graphql-server
- Language: C#
- Homepage: https://github.com/graphql-dotnet/graphql-dotnet
- Size: 19.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GraphQL-Server-Side
Getting started with GraphQL for server side with .NET## GraphQL
[GraphQL](https://graphql.org/) is a query language. It executes queries by using type systems which we define for our data. GraphQL isn’t tied to any specific language or a database, just the opposite, it is adaptable to our code and our data as well.## Getting started
In this repo we get started with GraphQL for .NET by using [GraphQL for .NET](https://github.com/graphql-dotnet/graphql-dotnet) for server side.## Sending the First Query
To test our GraphQL API, we are going to use the GraphQL UI playground tool. So, let’s first start our server application and then navigate to the `https://localhost:5001/ui/graphiql`