GraphQL: Difference between revisions
Jump to navigation
Jump to search
Line 30: | Line 30: | ||
==References== | ==References== | ||
* [https://graphql.org/swapi-graphql SWAPI GraphQL IDE Online] | |||
* [https://graphql.org/learn/ Learn GraphQL] | * [https://graphql.org/learn/ Learn GraphQL] | ||
* [https://github.com/graphql/graphiql GraphiQL] | * [https://github.com/graphql/graphiql GraphiQL] | ||
* [https://graphql.org/ GraphQL] | * [https://graphql.org/ GraphQL] |
Revision as of 04:50, 28 April 2020
type Project {
name: String
tagline: String
contributors: [User]
}
|
{
project(name: "GraphQL") {
tagline
}
}
|
{
"project": {
"tagline": "A query language for APIs"
}
}
|