-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Initialize alpha GraphQL support #6902
Conversation
def test_extracts_fields(self): | ||
self.assertTrue( | ||
set(extract_from_marshmallow(SettingSchemaPublic)).issuperset( | ||
set(['id', 'app_name', 'is_paytm_activated']) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Black would make changes.
|
||
def init_app(app): | ||
app.add_url_rule( | ||
"/graphql", view_func=GraphQLView.as_view("graphql", schema=schema, graphiql=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Black would make changes.
Complexity increasing per file
==============================
- app/graphql/types/settings/schema.py 1
- app/graphql/utils/fields.py 1
- tests/all/unit/graphql/utils/test_fields.py 1
- app/graphql/views.py 1
- app/graphql/schema.py 1
See the complete overview on Codacy |
Codecov Report
@@ Coverage Diff @@
## development #6902 +/- ##
===============================================
+ Coverage 66.34% 66.40% +0.05%
===============================================
Files 308 313 +5
Lines 15330 15358 +28
===============================================
+ Hits 10171 10198 +27
- Misses 5159 5160 +1
Continue to review full report at Codecov.
|
Fix for #6903