https://www.prisma.io/ logo
Join SlackCommunities
Powered by
# random
  • t

    Ted Williams

    02/20/2018, 2:44 PM
    Hi! Anyone here with active github accounts registered a year ago or earlier? I want these tokens https://gist.github.com/c-darwin/a9a96a4eaae16c0d410f34e434594132 They don't sell them, that's why I'm looking for people having veteran github accounts to place my ECDSA keys there. I can pay for your help, please PM me. Thanks!
  • w

    weakky

    02/22/2018, 2:34 PM
    Oh crap https://github.com/npm/npm/issues/19883 😂😨
    🙀 2
    🍿 2
  • w

    weakky

    02/22/2018, 2:35 PM
    Pay attention when upgrading npm
  • h

    harmony

    02/22/2018, 3:31 PM
    npm is stupid
  • h

    harmony

    02/22/2018, 3:31 PM
    it should not set permissions at all
  • h

    harmony

    02/22/2018, 3:31 PM
    it's been broken on windows for a couple of versions now
  • h

    harmony

    02/22/2018, 3:31 PM
    with some packages that is
  • l

    lfades

    02/22/2018, 3:37 PM
    @harmony oh, and I thought I was safe this time :c
  • w

    Will Chertoff

    02/23/2018, 6:19 PM
    Is it possible to add relationship queries inside custom resolvers?
    n
    • 2
    • 10
  • e

    ericsonluciano

    02/24/2018, 12:07 AM
    anyone tried to cluster deployment? i try to push and everything like https://www.prismagraphql.com/docs/tutorials/cluster-deployment/digital-ocean-(docker-machine)-texoo9aemu but weird Error: Could not connect to cluster do-cluster with host
    <http://ip:4466>
    . Did you provide the right port? but he ask me to kill the port 3307 before any experiencing this? Edit: already saw the issue on forum thanks
  • t

    Tim Rich

    02/26/2018, 9:05 AM
    can anyone explain to me what prisma is ?
    c
    m
    • 3
    • 5
  • t

    Tim Rich

    02/26/2018, 9:05 AM
    it seems to be an ORM
  • t

    Tim Rich

    02/26/2018, 9:05 AM
    can i use it client side?
    c
    • 2
    • 1
  • j

    jjaybrown98

    02/26/2018, 11:09 AM
    could someone help with a problem I'm having with AWS lambda there is a function which references prisma that fails but for others works. Would someone mind going to this repo cloning and deploying with serverless https://github.com/delta98/prisma-serverless
    j
    b
    • 3
    • 11
  • j

    jjaybrown98

    02/26/2018, 11:09 AM
    the given url should provide a hello world message if it works, or an internal server error message if it doesn't
  • j

    johannpinson

    02/26/2018, 12:21 PM
    message has been deleted
  • j

    johannpinson

    02/26/2018, 12:21 PM
    screen for @jjaybrown98 😉
    j
    • 2
    • 1
  • h

    harmony

    02/27/2018, 1:24 PM
    😂 3
  • i

    innerdaze

    02/27/2018, 1:29 PM
    I’ve never needed the pogchamp emote more than I do now…
  • h

    harmony

    02/27/2018, 1:39 PM
    🐿️
  • a

    adrian2monk

    03/01/2018, 5:25 PM
    Hey guys I’m looking for some tips about using Prisma with elasticsearch only, without any relational database. Would be possible that kind of approach using Prisma right now? I’m going to do a simple prototype app for proving of concept related with an ecommerce side project. Maybe it isn’t the right fit, or there is any other best approach, either case, I want to know your opinion about it. Thanks in advance!
    l
    • 2
    • 4
  • e

    ericsonluciano

    03/06/2018, 12:36 PM
    hi everyone question not part of prisma but a graphql what is the best way create a seperate type or just include it. for example instead of
    type Location {}
    jut include it as
    Country: String!
    City: String!
    a
    d
    • 3
    • 6
  • t

    thisismissem

    03/09/2018, 3:31 AM
    @ericsonluciano depends if you've other Location data for use in your app?
  • t

    thisismissem

    03/09/2018, 3:31 AM
    e.g., can I find things that aren't a restaurant by location? Can I see a list of just locations?
  • e

    ericsonluciano

    03/09/2018, 3:31 AM
    ^ it will be using for filter
  • t

    thisismissem

    03/09/2018, 3:32 AM
    Because may something like:
    Copy code
    type Restaurant {
      id: ID!
      city: City!
      country: Country!
    }
    is better?
  • t

    thisismissem

    03/09/2018, 3:33 AM
    Then you could have a list of countries and a list of cities?
  • t

    thisismissem

    03/09/2018, 3:33 AM
    where City and Country just have are:
    Copy code
    type Country/City {
      id: ID!
      name: String!
    }
  • e

    ericsonluciano

    03/09/2018, 3:34 AM
    ^ yeah i think this one is better
  • i

    iamclaytonray

    03/09/2018, 4:29 AM
    I do Country by enum
1...151617...53Latest