GraphQL: Difference between revisions
Jump to navigation
Jump to search
Line 59: | Line 59: | ||
| valign="top" | | | valign="top" | | ||
* [https://stackoverflow.com/questions/45516743 | * [https://stackoverflow.com/questions/45516743 AJAX query with a variable by using Http POST] | ||
* [https://stackoverflow.com/questions/46721015 AJAX query by using Http GET] | |||
|} | |} |
Revision as of 11:09, 29 April 2020
Schema type Project {
name: String
tagline: String
contributors: [User]
}
|
Query {
project(name: "GraphQL") {
tagline
}
}
|
Results {
"project": {
"tagline": "A query language for APIs"
}
}
|