From 3bf9f8523dfebdddb7f62e94064fe0098a20248b Mon Sep 17 00:00:00 2001 From: Shane Myrick Date: Fri, 12 Apr 2024 16:09:54 -0700 Subject: [PATCH] Create b.graphql --- .../shareable-basic/federation/b.graphql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 rfcs/test-cases/shareable-basic/federation/b.graphql diff --git a/rfcs/test-cases/shareable-basic/federation/b.graphql b/rfcs/test-cases/shareable-basic/federation/b.graphql new file mode 100644 index 0000000..31378ef --- /dev/null +++ b/rfcs/test-cases/shareable-basic/federation/b.graphql @@ -0,0 +1,14 @@ +extend schema + @link( + url: "https://specs.apollo.dev/federation/v2.5", + import: ["@key", "@shareable"] + ) + +type Query { + topLocations: [Location!]! +} + +type Location @key(fields: "id") { + id: ID! + description: String! @shareable +}