sdubois
01/22/2017, 7:28 PMcreateUser
API, is an auth header required? What would it be, considering that the user isn't there yet...?sdubois
01/22/2017, 7:28 PMInsufficient permissions for this mutation
sorenbs
sdubois
01/22/2017, 7:29 PMcodepreneur
01/22/2017, 8:45 PMcodepreneur
01/22/2017, 8:45 PMcodepreneur
01/22/2017, 8:45 PMcodepreneur
01/22/2017, 8:45 PMcodepreneur
01/22/2017, 8:45 PMcodepreneur
01/22/2017, 8:55 PMcodepreneur
01/22/2017, 8:55 PMmartin
01/22/2017, 9:21 PM503 (Service Unavailable: Back-end server is at capacity)
. Any updates? Much appreciated.schickling
01/22/2017, 9:21 PMnilan
01/22/2017, 9:22 PMmartin
01/22/2017, 9:23 PMschickling
01/22/2017, 9:30 PMnilan
01/22/2017, 9:31 PMnicklewis
01/22/2017, 9:31 PMnilan
01/22/2017, 9:33 PMcodepreneur
01/23/2017, 12:44 AMconst storeType = new GraphQLObjectType({
name: 'Store',
fields: () => ({
id: globalIdField('Store'),
allVideos: {
type: allVideos.connectionType,
args: Object.assign(
{},
connectionArgs
),
resolve: (_, args) => {
}
},
Video: {
type: allVideos.connectionType,
args: Object.assign(
{},
connectionArgs,
{id: {type: GraphQLString}}
),
resolve: (_, args) => {
gives me errors like so:
-- GraphQL Validation Error -- VideoPage --
File: /Users/what/src/components/VideoPage.js
Error: Cannot query field "id" on type "VideoConnection".
Source:
>
> id
> ^^^
codepreneur
01/23/2017, 12:45 AMsashko
01/23/2017, 12:45 AMcodepreneur
01/23/2017, 12:45 AMconst videoType = new GraphQLObjectType({
name: 'Video',
fields: () => ({
id: {
type: new GraphQLNonNull(GraphQLID),
resolve: (obj) => obj.id
},
name: { type: GraphQLString },
url: { type: GraphQLString }
})
})
const allVideos = connectionDefinitions({
name: 'Video',
nodeType: videoType
})
cody.landry
01/23/2017, 5:24 AMsorenbs
sorenbs
artyom
01/23/2017, 1:15 PMcodepreneur
01/23/2017, 1:49 PMcodepreneur
01/23/2017, 1:49 PMcodepreneur
01/23/2017, 1:49 PM