https://www.prisma.io/ logo
Join Slack
Powered by
# random
  • a

    Alejandro Estrada

    01/28/2019, 10:24 PM
    Who is using Relay, and want to help me with something I had been working on to test it!
  • g

    Gomah

    01/29/2019, 2:45 AM
    Hi @schickling @nilan 👋 , is Prisma open to backers/sponsors?
  • k

    kitze

    01/29/2019, 2:39 PM

    https://www.youtube.com/watch?v=C7-sSo7omnQ▾

    If you're on the verge about using TypeScript 😄
    👍 1
    💯 1
    e
    • 2
    • 4
  • c

    chan1di

    01/29/2019, 8:11 PM
    does someone know this error?
    b
    • 2
    • 1
  • n

    Nick

    01/29/2019, 9:52 PM
    Have you tried to remove the
    data
    field and see if that helps.
  • j

    Jeff

    01/31/2019, 12:23 AM
    @chan1di could data be a parameter in your mutation ?
    c
    • 2
    • 1
  • c

    csbdeak

    02/01/2019, 12:42 PM
    we should see the mutation how it looks, maybe it’s not data
  • e

    eolxsi

    02/01/2019, 1:03 PM
    Hi guys, I'm trying to install prism but it's not possible. The moment I do "prisma -v" the console returns "zsh: command not found: prisma". When I install it using "npm install -g prisma" it seems to install, but the terminal returns sh: 1: prisma: not found. Thank you very much.
    d
    c
    • 3
    • 12
  • c

    csbdeak

    02/01/2019, 1:06 PM
    i think you have to install prisma-cli too
  • d

    Dan Ramos

    02/01/2019, 5:12 PM
    hey does anyone know if prisma admin supports file uploads ?
    k
    • 2
    • 2
  • a

    Ash Berlin-Taylor

    02/01/2019, 5:24 PM
    How do people handling testing your app that uses Prisma? Right now we're entirely mocking out the Prisma bindings, but it leaves a lot to be desired.
  • a

    Ash Berlin-Taylor

    02/01/2019, 5:25 PM
    Any tips for fixtures/mock data etc?
    a
    • 2
    • 9
  • j

    Jack Toumey

    02/02/2019, 3:01 AM
    dumb question, but what is it called where you have query results that can loop back into the same type? (e.g. a user has messages, each message has another user, who in turn has messages themselves, etc)
  • j

    Jack Toumey

    02/02/2019, 3:09 AM
    Basically, I want to write the resolver for the child object but am not sure where to put it
  • j

    Jack Toumey

    02/02/2019, 3:09 AM
    This is for graphql-js, not SDL
  • j

    Jack Toumey

    02/02/2019, 3:56 AM
    Is this right?
    Copy code
    export const Message = new GraphQLObjectType({
      name: 'Message',
      fields: () => ({
        id: { type: GraphQLNonNull(ObjectId) },
        text: { type: GraphQLString },
        createdAt: { type: GraphQLString },
        user: { 
          type: User,
          resolve: async (message, args, { loaders }) => {
            return await loaders.user.load(message.userId);
          },
        },
      })
    });
  • j

    Jack Toumey

    02/02/2019, 4:50 AM
    wait, is graphql-js even capable of everything that a SDL-defined schema can do?
  • j

    Jack Toumey

    02/02/2019, 4:51 AM
    sorry, I'll take my questions elsewhere
  • p

    pllumh

    02/06/2019, 9:02 AM
    JS curiosity question..
    🤯 1
    😮 1
    b
    • 2
    • 1
  • p

    pllumh

    02/06/2019, 9:03 AM
    Shouldn't the first example also return
    [11,55]
    ?
    k
    a
    +2
    • 5
    • 7
  • g

    gwil

    02/08/2019, 11:55 AM
    Hey all, I’ve been using Prisma for a prototype’s companion GraphQL server, and like it enough that I’ve been thinking a fair bit about whether I’d feel comfortable taking it into production and wrote up a little post about it: https://dev.to/sgwilym/how-far-can-prisma-take-you-in-february-2019-3chp
    🙌 2
    👍 1
    💚 4
    🙏 3
    n
    u
    • 3
    • 7
  • a

    Artur Mrozowski

    02/12/2019, 10:03 AM
    Is graphqlgen similar to Amplify? In other words, can I expect it to generate CRUD+ resolvers and underlying physical schema in , say in Postgres?
  • c

    csbdeak

    02/12/2019, 10:09 AM
    yes
  • a

    Artur Mrozowski

    02/12/2019, 10:28 AM
    Current version of Amplify has some limits when it comes to number of types that you are able to deploy? In my experience having more than 7 types results in "template may not exceed 460800 bytes in size" error. Is there any similar limit in graphqlgen?
    h
    m
    • 3
    • 22
  • a

    Andres Montoya

    02/12/2019, 6:20 PM
    I know this is not about Prisma but it's important for me 😃 Good afternoon, I'd like to know the opinion of everyone according to the experience gained about software development. I'm studying systems engineer, and someone told me that among more programming languages ​​a person dominate, more llamative would be for a company ¿Is that true? I'm saying that because I like developing on languages like JavaScript or Python, but no PHP for example... I think in this case would be more atractive a developer specialized in a certain technology, I mean, for example, one who domine JavaScript developing web, mobile, IoT, desktop, etc, it's better... I think. ¿What do you think? Thank you.
    l
    • 2
    • 1
  • j

    John Smeeth

    02/13/2019, 12:15 PM
    hi all
  • j

    John Smeeth

    02/13/2019, 12:17 PM
    I see at this https://www.prisma.io/docs/1.26/get-started/03-build-graphql-servers-with-prisma-TYPESCRIPT-t201/ has
    Copy code
    The Post and User types are straightforward re-definitions of the models specified in datamodel.prisma, except that the Prisma-specific directives have been removed.
    How can i avoid re-definition of the models on the schema?
    m
    n
    +2
    • 5
    • 9
  • m

    Murtaza

    02/14/2019, 3:32 AM
    Hi, I am new to Graphql and I need to create a service structure on Node using Apollo Server and ElasticSearch. I googled boilerplates and found graphql-compose-elasticsearch with but I have not found a good architecture/code structure with the above two techs. Can anyone please help me out asap with a example as I have to deliver it within few days. thanks m-nathani
  • o

    Oli Bradford

    02/14/2019, 4:53 AM
    Hi everyone! I spent 500 hours to make a ebook on how to use Slack S Hopefully, it will be useful for you, for your mom and for your boss👌http://bit.ly/on-slack
    Trust me! The URL-shortener is needed for statistics.
    👌 2
  • d

    domko

    02/14/2019, 4:03 PM
    Can someone tell me what the
    !
    on array indexes does? cant get any information without knowing the "name" of these thing.. i.E: https://github.com/prisma/graphql-request/blob/b0abe80788741f6360c7cd2cbc37620c573be0b1/src/types.ts#L60
    l
    • 2
    • 3
1...282930...53Latest