lancej
07/10/2017, 11:33 AMmwickett
07/10/2017, 3:57 PMjakelowen
07/10/2017, 4:31 PMsamjbmason
07/10/2017, 5:21 PMnilan
07/10/2017, 5:47 PMckelley
07/10/2017, 6:13 PMckelley
07/10/2017, 6:17 PMGraphQL error: The provided idToken is invalid. Please see <https://auth0.com/docs/tokens/id_token> for how to obtain a valid idToken
Anyone experienced this, and how did you fix it? I'm using Auth0 Lock and it seems to be returning an idToken just fine. I've checked the request as well and the token is included properlybe4r
07/10/2017, 6:25 PMsignor_busi
07/10/2017, 6:50 PMsignor_busi
07/10/2017, 6:51 PMsignor_busi
07/10/2017, 6:53 PMjoshjoe
07/10/2017, 7:44 PMmutation ($orgName: String!, $email:String!, $password: String!, $firstName:String!, $lastName:String!) {
createUser(authProvider: {
email:{
email:$email,
password:$password
}
},
organization: {
fullName: $orgName,
showDonationPage: false
},
persons: {
firstName: $firstName,
lastName: $lastName,
personType: PRIMARY,
position: 0,
emails: {
position: 0,
email: $email
},
group:{
groupType: ORGANIZATION,
recognitionName: $orgName
}
}
) {
id
}
}
The emails
connected to the persons
has a relationship to the organization
that is being created. Is it possible to connected this new org with the new email type in the same mutation, or do I need to use a serverless function for this?nilan
07/10/2017, 7:46 PMnilan
07/10/2017, 7:47 PMjoshjoe
07/10/2017, 7:48 PMstton
07/10/2017, 7:58 PMstton
07/10/2017, 8:15 PMsajmil
07/10/2017, 8:24 PMsamjbmason
07/10/2017, 8:53 PMjt9001
07/10/2017, 8:55 PMdan
07/10/2017, 10:30 PMsamjbmason
07/10/2017, 10:48 PMUser
create
samjbmason
07/10/2017, 10:49 PMsajmil
07/10/2017, 11:37 PMbe4r
07/11/2017, 1:31 AMtype Deck implements Node {
main: [Card!]! @relation(name: "MainDeckOnCard") @rename(oldName: "cards")
side: [Card!]! @relation(name: "SideDeckOnCard")
i get a message saying
"You are adding a required relation to 'Card' but there are already items."be4r
07/11/2017, 1:32 AMbe4r
07/11/2017, 1:32 AMmain: [Deck!]! @relation(name: "MainDeckOnCard") @rename(oldName: "decks")
side: [Deck!]! @relation(name: "SideDeckOnCard")
agartha
07/11/2017, 1:35 AMagartha
07/11/2017, 1:36 AMbe4r
07/11/2017, 2:46 AM