extend schema @link( url: "https://specs.apollo.dev/federation/v2.3", import: ["@key", "@shareable", "@inaccessible"] ) type Customer { id: ID! @shareable name: String @shareable other: Int @inaccessible } type Query { customer(id: ID!): Customer }