@graphql-hive/federation-gateway-audit
Version:
Audit tool for Apollo Federation Gateway
26 lines (24 loc) • 326 B
text/typescript
export const authors = [
{
id: "a1",
name: "John",
yearsOfExperience: 5,
},
{
id: "a2",
name: "Jane",
yearsOfExperience: 20,
},
];
export const posts = [
{
id: "p1",
body: "p1-body",
author: authors[0],
},
{
id: "p2",
body: "p2-body",
author: authors[1],
},
];