@graphql-hive/federation-gateway-audit
Version:
Audit tool for Apollo Federation Gateway
38 lines (32 loc) • 945 B
text/typescript
import { shouldPunishForPoorPlans } from "../../env.js";
import { createSubgraph } from "../../subgraph.js";
import { products } from "./data.js";
// I deliberately name it all-products to make sure it's first in the list of subgraphs (in case the order matters)
export default createSubgraph("all-products", {
typeDefs: /* GraphQL */ `
extend schema
@link(
url: "https://specs.apollo.dev/federation/v2.3"
import: ["@key", "@shareable"]
)
type Product @key(fields: "id") {
id: ID!
}
`,
resolvers: {
Product: {
__resolveReference(key: { id: string }) {
if (shouldPunishForPoorPlans()) {
throw new Error("You should be using the categories subgraph!");
}
const product = products.find((p) => p.id === key.id);
if (!product) {
return null;
}
return {
id: product.id,
};
},
},
},
});