Added API key authentication.
This commit is contained in:
@@ -46,7 +46,7 @@ export const actorsSchema = `
|
||||
query: String
|
||||
limit: Int! = 30
|
||||
page: Int! = 1
|
||||
order: [String]
|
||||
order: [String!]
|
||||
): ActorsResult
|
||||
|
||||
actor(
|
||||
@@ -54,7 +54,7 @@ export const actorsSchema = `
|
||||
): Actor
|
||||
|
||||
actorsById(
|
||||
ids: [Int]!
|
||||
ids: [Int!]!
|
||||
): [Actor]
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ export const actorsSchema = `
|
||||
}
|
||||
|
||||
type ActorsResult {
|
||||
nodes: [Actor]
|
||||
nodes: [Actor!]!
|
||||
total: Int
|
||||
}
|
||||
|
||||
@@ -81,6 +81,8 @@ export const actorsSchema = `
|
||||
gender: String
|
||||
dateOfBirth: Date
|
||||
age: Int
|
||||
ageFromBirth: Int
|
||||
ageThen: Int
|
||||
origin: Location
|
||||
residence: Location
|
||||
height: Int
|
||||
|
||||
Reference in New Issue
Block a user