12 lines
118 B
GraphQL
12 lines
118 B
GraphQL
|
|
type Query {
|
||
|
|
frontpage: [Question!]!
|
||
|
|
}
|
||
|
|
|
||
|
|
"""
|
||
|
|
Forecast question.
|
||
|
|
"""
|
||
|
|
type Question {
|
||
|
|
id: String!
|
||
|
|
title: String!
|
||
|
|
}
|