Upgrade to Pro — share decks privately, control downloads, hide ads and more …

RustのSchema_First_GraphQLライブラリrusty-gqlを作った話.pdf

Takuro
October 16, 2022

 RustのSchema_First_GraphQLライブラリrusty-gqlを作った話.pdf

Takuro

October 16, 2022
Tweet

More Decks by Takuro

Other Decks in Programming

Transcript

  1. At Netflix we strongly prefer schema-first development. ・The schema design

    is front and center of the developer experience. 参照: Netflix Technology Blog: Open Sourcing the Netflix Domain Graph Service Framework: GraphQL For Spring Boot Netflix製のGraphQLライブラリ
  2. At Netflix we strongly prefer schema-first development. ・The schema design

    is front and center of the developer experience. 参照: Netflix Technology Blog: Open Sourcing the Netflix Domain Graph Service Framework: GraphQL For Spring Boot Netflix製のGraphQLライブラリ
  3. At Netflix we strongly prefer schema-first development. ・The schema design

    is front and center of the developer experience. 参照: Netflix Technology Blog: Open Sourcing the Netflix Domain Graph Service Framework: GraphQL For Spring Boot Netflix製のGraphQLライブラリ rusty-gqlはSchema Firstを採用
  4. GraphQL AST • SelectionSet: 複数のFieldを持つ • Field: ◦ オブジェクトのField ◦

    SelectionSetを持つ場合もある。 GraphQL Spec https://spec.graphql.org/October2021/