実質無料で GraphQL Gateway を手に入れる ケース1: 独立した Type の合成 26 frontend User Service Post Service GraphQL Gateway query { userById(id: "foo") { name } postById(id: "bar") { body } }
実質無料で GraphQL Gateway を手に入れる ケース1: 独立した Type の合成 27 frontend User Service Post Service GraphQL Gateway query { userById(id: "foo") { name } postById(id: "bar") { body } } query { userById(id: "foo") { name } } query { postById(id: "bar") { body } }
実質無料で GraphQL Gateway を手に入れる ケース2: service をまたいだ Type の合成 32 frontend User Service Post Service GraphQL Gateway 1. query { postById(id: "bar") { author { email } } }