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;









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.



enter image description here



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?










share|improve this question
































    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.



    enter image description here



    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?










    share|improve this question




























      0












      0








      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.



      enter image description here



      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?










      share|improve this question















      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.



      enter image description here



      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






      share|improve this question














      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 21:31









      user7496931user7496931

      2071 silver badge9 bronze badges




      2071 silver badge9 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0


















          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



          enter image description here






          share|improve this answer



























            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
            );



            );














            draft saved

            draft discarded
















            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









            0


















            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



            enter image description here






            share|improve this answer






























              0


















              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



              enter image description here






              share|improve this answer




























                0














                0










                0









                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



                enter image description here






                share|improve this answer














                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



                enter image description here







                share|improve this answer













                share|improve this answer




                share|improve this answer










                answered Apr 8 at 16:34









                Harshit PantHarshit Pant

                3731 silver badge8 bronze badges




                3731 silver badge8 bronze badges

































                    draft saved

                    draft discarded















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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









                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript