Skip to content

Commit

Permalink
Fix schema
Browse files Browse the repository at this point in the history
  • Loading branch information
arun-sureshkumar committed Oct 4, 2022
1 parent 97f6fdc commit 13e91af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphene_federation/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def get_sdl(schema: Schema) -> str:
_schema_import.append('"@shareable"')
if tagged_fields:
_schema_import.append('"@tag"')
_schema = f'extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: [{", ".join(_schema_import)}]'
_schema = f'schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: [{", ".join(_schema_import)}]'
_schema += '{ %replace% \n} \n\n'
_schema_content = ""
if schema.query:
Expand Down

0 comments on commit 13e91af

Please sign in to comment.