From 242fcfb823e8b63a7d452ed557ac11aeef96c66a Mon Sep 17 00:00:00 2001 From: Kiril Kovachev Date: Fri, 18 Oct 2024 16:27:36 +0100 Subject: [PATCH] Add GraphQL schema stub --- kanken_online/graphql/schema.graphql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 kanken_online/graphql/schema.graphql diff --git a/kanken_online/graphql/schema.graphql b/kanken_online/graphql/schema.graphql new file mode 100644 index 0000000..a1cdee5 --- /dev/null +++ b/kanken_online/graphql/schema.graphql @@ -0,0 +1,12 @@ +schema { + kanji: Kanji, + kotoba: Kotoba +} + +type Kanji { + +} + +type Kotoba { + +} \ No newline at end of file