How do you update/create a null field in a new record with PrismaCompiler error with PrismaCorrect way to declare fields for Prisma provided by GraphQL Yoga but not required in resolverUnable to use Fragments on GraphQL-yoga with PrimsaRow level security using prisma and postgresAdd data from a JSON file to the Prisma database with a seed fileCannot query on a date range, get back no results each timeGraphql: Is there a way to update a query with NEW fields not declared on the schema?Problem when performing an update user mutationPrisma returning error of expected input type but type is providedHow to upsert new record in Prisma without an ID?
Defining a big matrix for iterative algorithm
Solvers and saddle points
Is the phrase “You are requested” polite or rude?
Why are there never-ending wars in the Middle East?
Can I reproduce this in Latex
Implementation of A* algorithm in C++
Use GPLv3 library in a closed system (no software distribution)
In this scene from the novel, 'The Martian', by Andy Weir, how does Mark Watney store hydrogen made from water in the tank?
Modeling the Round (Nearest Integer) function
Shimano GRX 2x11 Brake Disc Compatibility
Is the EU Settlement Scheme legal?
Is Mercy Inverse Injustice or Inversed Injustice?
Is this sentence from a widely distributed current affairs publication correct?
Are homeless people protected by antidiscrimination laws?
Can I exit and reenter a UK station while waiting for a connecting train?
For piano scales, should I let go of the previous key before I hit the next one?
Phrase: the sun is out
When and why did the House rules change to permit an inquiry without a vote?
QGIS 3.6.1 problems with CRS
Why the service --status-all is not listing this working service?
Why not 1.d4 Nf6 2.d5?
Was Hitler exclaiming "Heil Hitler!" himself when saluting?
If equal temperament divides octave into 12 equal parts, why hertz differences are not the same but element 12th of two?
10x10 grid with no unpainted hexominoes
How do you update/create a null field in a new record with Prisma
Compiler error with PrismaCorrect way to declare fields for Prisma provided by GraphQL Yoga but not required in resolverUnable to use Fragments on GraphQL-yoga with PrimsaRow level security using prisma and postgresAdd data from a JSON file to the Prisma database with a seed fileCannot query on a date range, get back no results each timeGraphql: Is there a way to update a query with NEW fields not declared on the schema?Problem when performing an update user mutationPrisma returning error of expected input type but type is providedHow to upsert new record in Prisma without an ID?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I'm setting up permissions for user on a CRUD app, I want to give myself the permission of ADMIN
but I can't seem to do it. I have set up my data type for a user
as follows:
datamodel.graphql
:
type User
id: ID! @unique
name: String!
email: String! @unique
password: String!
resetToken: String
resetTokenExpiry: String
permissions: [Permission]
schema.graphql
:
type User
id: ID!
name: String!
email: String!
permissions: [Permission!]!
When using my Prisma console, I can fill out all the fields except for permissions
.
And when trying to update an existing user's permissions, I can't seem to type anything in that field to update it. Is my schema wrong?
graphql prisma
add a comment
|
I'm setting up permissions for user on a CRUD app, I want to give myself the permission of ADMIN
but I can't seem to do it. I have set up my data type for a user
as follows:
datamodel.graphql
:
type User
id: ID! @unique
name: String!
email: String! @unique
password: String!
resetToken: String
resetTokenExpiry: String
permissions: [Permission]
schema.graphql
:
type User
id: ID!
name: String!
email: String!
permissions: [Permission!]!
When using my Prisma console, I can fill out all the fields except for permissions
.
And when trying to update an existing user's permissions, I can't seem to type anything in that field to update it. Is my schema wrong?
graphql prisma
add a comment
|
I'm setting up permissions for user on a CRUD app, I want to give myself the permission of ADMIN
but I can't seem to do it. I have set up my data type for a user
as follows:
datamodel.graphql
:
type User
id: ID! @unique
name: String!
email: String! @unique
password: String!
resetToken: String
resetTokenExpiry: String
permissions: [Permission]
schema.graphql
:
type User
id: ID!
name: String!
email: String!
permissions: [Permission!]!
When using my Prisma console, I can fill out all the fields except for permissions
.
And when trying to update an existing user's permissions, I can't seem to type anything in that field to update it. Is my schema wrong?
graphql prisma
I'm setting up permissions for user on a CRUD app, I want to give myself the permission of ADMIN
but I can't seem to do it. I have set up my data type for a user
as follows:
datamodel.graphql
:
type User
id: ID! @unique
name: String!
email: String! @unique
password: String!
resetToken: String
resetTokenExpiry: String
permissions: [Permission]
schema.graphql
:
type User
id: ID!
name: String!
email: String!
permissions: [Permission!]!
When using my Prisma console, I can fill out all the fields except for permissions
.
And when trying to update an existing user's permissions, I can't seem to type anything in that field to update it. Is my schema wrong?
graphql prisma
graphql prisma
asked Mar 28 at 21:31
user7496931user7496931
2071 silver badge9 bronze badges
2071 silver badge9 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
I believe permission is an enum(I am kinda recognising that schema from the Wes Bos Course).
You can add an item to an enum by using the three-dot menu > Add an Item
add a comment
|
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55407154%2fhow-do-you-update-create-a-null-field-in-a-new-record-with-prisma%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I believe permission is an enum(I am kinda recognising that schema from the Wes Bos Course).
You can add an item to an enum by using the three-dot menu > Add an Item
add a comment
|
I believe permission is an enum(I am kinda recognising that schema from the Wes Bos Course).
You can add an item to an enum by using the three-dot menu > Add an Item
add a comment
|
I believe permission is an enum(I am kinda recognising that schema from the Wes Bos Course).
You can add an item to an enum by using the three-dot menu > Add an Item
I believe permission is an enum(I am kinda recognising that schema from the Wes Bos Course).
You can add an item to an enum by using the three-dot menu > Add an Item
answered Apr 8 at 16:34
Harshit PantHarshit Pant
3731 silver badge8 bronze badges
3731 silver badge8 bronze badges
add a comment
|
add a comment
|
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55407154%2fhow-do-you-update-create-a-null-field-in-a-new-record-with-prisma%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown