GraphQL: Difference between revisions
Jump to navigation
Jump to search
Line 127: | Line 127: | ||
| valign="top" | | | valign="top" | | ||
* [https://stackoverflow.com/questions/48037601 <code>LazyInitializationException</code> with Spring Boot] | |||
* [https://stackoverflow.com/questions/45516743 AJAX query with a variable by using Http POST] | * [https://stackoverflow.com/questions/45516743 AJAX query with a variable by using Http POST] | ||
* [https://www.pluralsight.com/guides/building-a-graphql-server-with-spring-boot Building a GraphQL Server with Spring Boot] | * [https://www.pluralsight.com/guides/building-a-graphql-server-with-spring-boot Building a GraphQL Server with Spring Boot] |
Revision as of 21:27, 9 June 2020
Schema type Project {
name: String
tagline: String
contributors: [User]
}
|
Query {
project(name: "GraphQL") {
tagline
}
}
|
Results {
"project": {
"tagline": "A query language for APIs"
}
}
|
Scalar
About the types you can assign to fields or to the return values of operations. Graphql Java supports the following types:
String Boolean Int Float ID Long Short Byte Float BigDecimal BigInteger
Sencha Store
Ext/data/ ├─ operation/ │ ├─ Create [POST ] │ ├─ Destory [DELETE] │ ├─ Operation │ ├─ Read [GET ] │ └─ Update [PUT ] │ ├─ proxy/ │ ├─ Ajax │ ├─ Proxy │ └─ Rest |
│ ├─ reader/ │ ├─ Array │ ├─ JSON │ ├─ Reader │ └─ XML │ ├─ request/ │ ├─ Ajax │ ├─ Base │ └─ Form │ |
│ ├─ writer/ │ ├─ Array │ ├─ JSON │ └─ XML │ │ Ext/grid/filters/ ├─ filter └─ Filters |
https://docs.sencha.com/extjs/6.2.0/classic/Ext.data.JsonStore.html https://docs.sencha.com/extjs/6.2.0/classic/src/JsonStore.js.html
https://docs.sencha.com/extjs/6.2.0/classic/Ext.data.proxy.Rest.html https://docs.sencha.com/extjs/6.2.0/classic/src/Rest.js.html
https://docs.sencha.com/extjs/6.2.0/classic/Ext.data.proxy.Ajax.html https://docs.sencha.com/extjs/6.2.0/classic/src/Ajax.js-1.html
https://docs.sencha.com/extjs/6.2.0/classic/Ext.toolbar.Paging.html https://docs.sencha.com/extjs/6.2.0/classic/src/Paging.js.html
https://docs.sencha.com/extjs/6.2.0/classic/Ext.grid.filters.Filters.html https://docs.sencha.com/extjs/6.2.0/classic/src/Filters.js.html