Bruno Prela
09/11/2018, 6:26 PMsorenbs
sorenbs
Bruno Prela
09/11/2018, 6:40 PMtype Example {
id: ID! @unique
createdAt: DateTime!
updatedAt: DateTime!
status: STATUS_ENUM!
thisList: [String!]
thatList: [String!]
}
Bruno Prela
09/11/2018, 6:41 PMBruno Prela
09/11/2018, 6:41 PMThe scalar field `thisList` has the wrong format: `[String!]` Possible Formats: `String`, `String!`
sorenbs
[String!]!
sorenbs
Bruno Prela
09/11/2018, 6:50 PMBruno Prela
09/11/2018, 6:52 PMJared
09/11/2018, 7:04 PM!
on my arrays.sorenbs
type Example {
id: ID! @unique
createdAt: DateTime!
updatedAt: DateTime!
thisList: [String!]!
thatList: [String!]!
}
This should workBruno Prela
09/11/2018, 7:08 PMtype MainPiece {
id: ID! @unique
tag: String!
slides: [String!]!
}
Bruno Prela
09/11/2018, 7:08 PMsorenbs
sorenbs
Bruno Prela
09/11/2018, 7:13 PMThe scalar field `thisList` has the wrong format: `[String!]!` Possible Formats: `String`, `String!`
Bruno Prela
09/11/2018, 7:17 PMBruno Prela
09/11/2018, 7:17 PMsorenbs
sorenbs
Bruno Prela
09/11/2018, 7:26 PMJared
09/11/2018, 7:27 PMBruno Prela
09/11/2018, 7:45 PMsorenbs
Jared
09/11/2018, 7:54 PMBruno Prela
09/11/2018, 8:53 PMmigrations: false
was set or not in my docker-composeBruno Prela
09/11/2018, 8:55 PM