Skip to content

This reposotory represents my learning abount GraphQL Federation with Apollo.

Notifications You must be signed in to change notification settings

jdgabriel/graphql-federation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphQL Federation

This reposotory represents my learning abount GraphQL Federation with Apollo.

Books API ./server-one

typeDefs definitions

extend schema
  @link(
    url: "https://specs.apollo.dev/federation/v2.0"
    import: ["@key", "@external"]
  )

type Book @key(fields: "authorId") {
  title: String
  authorId: Int
  author: Author
}

extend type Author @key(fields: "id") {
  id: ID! @external
}

type Query {
  books: [Book]
}

Resolvers

Query: {
  books: () => books,
},
Book: {
  author: (book) => {
    return { __typename: "Author", id: book.authorId };
  },
}

Author API ./server-two

typeDefs definitions

extend schema
extend schema @link(url: "https://specs.apollo.dev/federation/v2.0", import: ["@key"])

type Author @key(fields: "id") {
  id: ID!
  name: String
}

type Query {
  authors: [Author]
}

Resolvers

Query: {
  authors: () => authors,
},
Author: {
  __resolveReference(object) {
    return authors.find((user) => user.id == object.id);
  },
},

API Gateway ./gateway

Calls

Author query

query AuthorQuery {
  authors {
    id
    name
  }
}

Author with Book list query

query AuthorWithListOfBook {
authors {
  id
  name
  books {
    nodes {
      id
      title
    }
  }
}

Books query

query BooksQuery {
  books {
    title
    authorId
  }
}

Books with author query

query BooksWithAuthorQuery {
  books {
    title
    authorId
    author {
      id
      name
    }
  }
}

Comands

  • Start all services and API's
yarn start
  • Start ONLY Books API
yarn start:one
  • Start ONLY Author API
yarn start:two