Added API key authentication.

This commit is contained in:
2024-08-31 04:59:05 +02:00
parent da893c1a76
commit e8864ce35b
20 changed files with 514 additions and 28 deletions

View File

@@ -37,7 +37,7 @@ export const entitiesSchema = `
}
type EntitiesResult {
nodes: [Entity]
nodes: [Entity!]!
}
type Entity {
@@ -47,7 +47,7 @@ export const entitiesSchema = `
url: String
type: String
parent: Entity
children: [Entity]
children: [Entity!]!
}
`;