ahebwa49
04/01/2019, 7:49 AMahebwa49
04/01/2019, 7:49 AM[GraphQL error]: Message: Only absolute URLs are supported, Location: [object Object], Path: items
Ecker
04/01/2019, 9:13 AMJosé Gomes
04/01/2019, 11:35 AMPatrick Nasralla
04/01/2019, 12:26 PM[[String!]]
doesn’t seem to work even though it should!Patrick Nasralla
04/01/2019, 12:31 PMdatamodel.prisma
file I have defined part of my schema as follows:
type IaTemplate {
id: ID! @unique
title: String!
type: String
searchTerms: String
children: [String]
nodes: [ [String!] ]
flags: [String]
}
but looking at the generated prisma.graphql
the generated type is:
type IaTemplate {
id: ID!
title: String!
type: String
searchTerms: String
children: [String!]!
nodes: [String!]!
flags: [String!]!
}
Patrick Nasralla
04/01/2019, 12:32 PMUby
04/01/2019, 1:00 PMLars-Jørgen Kristiansen
04/01/2019, 2:15 PMLars-Jørgen Kristiansen
04/01/2019, 2:17 PMtype User {
posts: [Post!]!
}
Prisma schema:
type User {
posts(...): [Post!]
}
Lars-Jørgen Kristiansen
04/01/2019, 2:20 PMJosé Gomes
04/01/2019, 3:04 PMNovalis
04/01/2019, 5:55 PMimpowski
04/01/2019, 11:46 PMJames
04/02/2019, 6:36 AMromain.charretteur
04/02/2019, 8:22 AMMahalakshmi Ramanathan
04/02/2019, 9:03 AMJosé Gomes
04/02/2019, 10:37 AMMarat Khaliullin
04/02/2019, 11:25 AMElektrikSpark
04/02/2019, 12:05 PMNovalis
04/02/2019, 2:52 PMBruno Prela
04/02/2019, 3:07 PMprisma deploy
not working and returning an E2BIG
because their schema has become too large to be sent as a graphql request..KrusPat
04/02/2019, 4:00 PMflupshare
04/02/2019, 4:36 PMflupshare
04/02/2019, 4:38 PMflupshare
04/02/2019, 4:38 PMflupshare
04/02/2019, 4:38 PMflupshare
04/02/2019, 4:38 PMflupshare
04/02/2019, 5:21 PMpancake
04/02/2019, 6:10 PMfiltering queries
. Supposing the front end had a method getInvoices, in which the front end defines its return fields in info…. By what means might I best intercept a query
so that invoices marked isArchived are not returned within the selection defined by the front end? If someone has a concrete example, that would be great…