-
-
Notifications
You must be signed in to change notification settings - Fork 545
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge branch 'feat/starlite-integration'"
- Loading branch information
Showing
567 changed files
with
7,958 additions
and
40,678 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
poetry install | ||
pre-commit install --install-hooks | ||
pre-commit install |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[flake8] | ||
max-line-length = 89 | ||
exclude=.venv,.git | ||
ignore = W503 | ||
extend-ignore = | ||
# See https://github.com/PyCQA/pycodestyle/issues/373 | ||
E203, | ||
|
||
per-file-ignores = | ||
tests/types/test_lazy_types.py:E800 | ||
tests/test_forward_references.py:E800 | ||
tests/schema/test_resolvers.py:E800 | ||
tests/types/test_string_annotations.py:E800 | ||
tests/federation/test_printer.py:E800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [patrick91, BryceBeagle] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Bug report | ||
about: Create a bug report to help us improve the Strawberry GraphQL library | ||
--- | ||
<!-- Provide a general summary of the bug in the title above. --> | ||
|
||
<!--- This template is entirely optional and can be removed, but is here to help both you and us. --> | ||
<!--- Anything on lines wrapped in comments like these will not show up in the final text. --> | ||
|
||
## Describe the Bug | ||
|
||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
## System Information | ||
|
||
- Operating system: | ||
- Strawberry version: | ||
|
||
## Additional Context | ||
|
||
<!-- Add any other relevant information about the problem here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest a new feature or changes to existing features | ||
--- | ||
<!--- Provide a general summary of the changes you want in the title above. --> | ||
|
||
<!--- This template is entirely optional and can be removed, but is here to help both you and us. --> | ||
<!--- Anything on lines wrapped in comments like these will not show up in the final text. --> | ||
|
||
## Feature Request Type | ||
|
||
- [ ] Core functionality | ||
- [ ] Alteration (enhancement/optimization) of existing feature(s) | ||
- [ ] New behavior | ||
|
||
## Description | ||
|
||
<!-- A few sentences describing what it is that you'd like to see in Strawberry. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
name: Other issues | ||
about: Anything else that doesn't fall into the above categories. | ||
--- | ||
<!--- Provide a general summary of the changes you want in the title above. --> | ||
|
||
<!--- Anything on lines wrapped in comments like these will not show up in the final text. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!--- Provide a general summary of your changes in the title above. --> | ||
|
||
<!--- This template is entirely optional and can be removed, but is here to help both you and us. --> | ||
<!--- Anything on lines wrapped in comments like these will not show up in the final text. --> | ||
|
||
## Description | ||
|
||
<!--- Describe your changes in detail here. --> | ||
|
||
## Types of Changes | ||
|
||
<!--- What types of changes does your pull request introduce? Put an `x` in all the boxes that apply. --> | ||
- [ ] Core | ||
- [ ] Bugfix | ||
- [ ] New feature | ||
- [ ] Enhancement/optimization | ||
- [ ] Documentation | ||
|
||
## Issues Fixed or Closed by This PR | ||
|
||
* | ||
|
||
## Checklist | ||
|
||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] My code follows the code style of this project. | ||
- [ ] My change requires a change to the documentation. | ||
- [ ] I have updated the documentation accordingly. | ||
- [ ] I have read the CONTRIBUTING document. | ||
- [ ] I have added tests to cover my changes. | ||
- [ ] I have tested the changes and verified that they work and don't break anything (as well as I can manage). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
import httpx | ||
|
||
|
||
API_URL = os.environ["BOT_API_URL"] | ||
API_TOKEN = os.environ["API_SECRET"] | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 👥 Invite contributors | ||
name: Invite contributors | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 🆗 Ok to preview | ||
name: Ok to preview | ||
|
||
on: | ||
pull_request_target: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: 🆙 Release file check | ||
name: Release file check | ||
|
||
on: | ||
pull_request_target: | ||
|
Oops, something went wrong.