From 3281a2b6faf765c10e03ff171f307210a5002214 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Thu, 24 Oct 2024 16:03:22 +0200 Subject: [PATCH] spelling --- spec/temp.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/temp.md b/spec/temp.md index 49866ad..9220f23 100644 --- a/spec/temp.md +++ b/spec/temp.md @@ -66,16 +66,16 @@ Lookups can also be nested if they can be reached through other lookups. ```graphql example type Query { - organization(id: ID!): Ogranization @lookup + organization(id: ID!): Organization @lookup } -type Ogranization { +type Organization { repository(name: String!): Repository @lookup } type Repository @key(fields: "id organization { id }") { name: String! - organization: Ogranization + organization: Organization } ```