You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ let you write tests parametrized by a source of examples.
16
16
Generated queries have arbitrary depth and may contain any subset of GraphQL types defined in the input schema.
17
17
They expose edge cases in your code that are unlikely to be found otherwise.
18
18
19
-
For web API testing, [Schemathesis](https://github.com/schemathesis/schemathesis) provides a higher-level wrapper around this library.
19
+
[Schemathesis](https://github.com/schemathesis/schemathesis) provides a higher-level interface around this library and finds server crashes automatically.
20
20
21
21
## Usage
22
22
23
-
`hypothesis_graphql` provides the `from_schema` function, which takes a GraphQL schema and returns a Hypothesis strategy for
23
+
`hypothesis-graphql` provides the `from_schema` function, which takes a GraphQL schema and returns a Hypothesis strategy for
24
24
GraphQL queries matching the schema:
25
25
26
26
```python
@@ -127,3 +127,8 @@ The `hypothesis_graphql.nodes` module includes a few helpers to generate various
127
127
-`Null` -> `graphql.NullValueNode` (a constant, not a function)
128
128
129
129
They exist because classes like `graphql.StringValueNode` can't be directly used in `map` calls due to kwarg-only arguments.
130
+
131
+
## License
132
+
133
+
The code in this project is licensed under [MIT license](https://opensource.org/licenses/MIT).
134
+
By contributing to `hypothesis-graphql`, you agree that your contributions will be licensed under its MIT license.
0 commit comments