-
Updated
Feb 12, 2021 - TypeScript
graphql-schema
GraphQL is a data query language developed by Facebook. It provides an alternative to REST and ad-hoc webservice architectures. It allows clients to define the structure of the data required, and exactly the same structure of the data is returned from the server. It is a strongly typed runtime which allows clients to dictate what data is needed.
Here are 192 public repositories matching this topic...
-
Updated
Feb 11, 2021 - TypeScript
-
Updated
Feb 10, 2021 - TypeScript
-
Updated
Feb 8, 2021 - TypeScript
-
Updated
Feb 11, 2021 - C#
-
Updated
Jan 14, 2019
-
Updated
Sep 19, 2020 - JavaScript
I found a place where I had this:
from .enums import ExampleEnum
ABC = strawberry.type(ExampleEnum)
I think we should add a safety check as we already for enums: https://github.com/strawberry-graphql/strawberry/blob/master/strawberry/enum.py#L24-L25
We should only allow to decorate classes with strawberry.type, strawberry.input and strawberry.interface
-
Updated
Apr 12, 2020 - PHP
-
Updated
May 1, 2020 - JavaScript
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Dec 11, 2020 - TypeScript
-
Updated
Apr 17, 2019 - TypeScript
-
Updated
Nov 1, 2017 - JavaScript
-
Updated
Feb 3, 2021 - Vim script
-
Updated
Sep 13, 2020 - JavaScript
I think it would be super useful if one could include headers when defining the endpoints.
Something like:
endpoints: [{
namespace: 'model',
typePrefix: 'Model',
url: 'http://localhost:8080/graphql' // url to a GraphQL endpoint,
headers: {
'Authorization': 'Bearer **********************',
'content-type': 'application/json'
}
}-
Updated
Feb 10, 2021 - TypeScript
-
Updated
Jan 6, 2019
-
Updated
Dec 11, 2020 - CSS
-
Updated
Sep 10, 2019 - JavaScript
Add a GitHub action flow for publishing a new version (run build, run tests, publish to npm and GitHub packates) etc.
-
Updated
Dec 11, 2020 - JavaScript
-
Updated
Apr 11, 2019 - JavaScript
-
Updated
Jan 3, 2021 - Go
Annotation @GraphQLDescription( value ="${message}") not read from Properties files
-
Updated
Feb 1, 2021 - JavaScript
-
Updated
Mar 28, 2019 - TypeScript
Created by Facebook
Released 2015
- Organization
- graphql
- Website
- graphql.org
- Wikipedia
- Wikipedia
I'd like a configuration option to be able to disable the default mock map on this line here and get an error instead:
https://github.com/apollographql/graphql-tools/blob/5c5418cec88f1d5520eccc1d2e6dfaa511547e4d/src/mock.ts#L282
We have tests that use mock data and I'd rather have an explicit error if a value could not be resolved. I find the implicit default value unhelpful in this case and m