Skip to content

Commit 13e91af

Browse files
Fix schema
1 parent 97f6fdc commit 13e91af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_federation/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def get_sdl(schema: Schema) -> str:
129129
_schema_import.append('"@shareable"')
130130
if tagged_fields:
131131
_schema_import.append('"@tag"')
132-
_schema = f'extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: [{", ".join(_schema_import)}]'
132+
_schema = f'schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: [{", ".join(_schema_import)}]'
133133
_schema += '{ %replace% \n} \n\n'
134134
_schema_content = ""
135135
if schema.query:

0 commit comments

Comments
 (0)