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

    weakky

    09/26/2018, 9:43 AM
    Has anyone upgraded to macOS Mojave and tried dark mode? 🤔
    🦜 2
    c
    a
    • 3
    • 5
  • k

    kylemh

    10/01/2018, 5:22 PM
    https://www.reddit.com/r/webdev/comments/9khxwh/hacktoberfest_share_your_open_source_projects/e6z58p3
  • u

    uufish

    10/02/2018, 7:56 AM
    How can I develop upcoming connectors? https://github.com/prisma/prisma#upcoming-connectors
    b
    • 2
    • 1
  • a

    alec

    10/02/2018, 7:31 PM
    Anyone have a code snippet for uploading a photo to graphcool in react native on android? I keep getting a 'network request failed' error
    n
    • 2
    • 2
  • h

    huv1k

    10/03/2018, 1:30 PM
    Hey, does somebody know if its possible to block somehow showing output tab in VScode? It opens when there is error inside some plugin. Did somebody tried it or manage to do it somehow? 😄
    👀 2
  • n

    Nick

    10/04/2018, 7:26 AM
    Andrew have just released a graphql course https://www.udemy.com/graphql-bootcamp/
    🙌 3
  • d

    dzul

    10/05/2018, 4:45 PM
    hi every body , i need a tutorial for deploy prisma in aws
    n
    j
    +2
    • 5
    • 5
  • d

    dzul

    10/05/2018, 4:45 PM
    or what is the process for this
  • t

    Tanner

    10/17/2018, 3:50 PM
    anyone have experience with bidirectional relations using the
    @relation
    tag I’m having trouble getting it to work.
    Copy code
    type User {
        id: ID! @unique
        bookings: [Booking!]! @relation(name: "BookingsByUser")
        createdBookings: [Booking!]! @relation(name: "BookingsCreatedByUser")
    }
    
    type Booking {
        id: ID! @unique
        user: User! @relation(name: "BookingsByUser")
        orignalUser: User @relation(name: "BookingsCreatedByUser")
    }
    This throws an error on deployment
    ERROR: There is a relation ambiguity during the migration. Please first name the old relation on your schema. The ambiguity is on a relation between Booking and User. Please name relations or change the schema in steps.
    m
    • 2
    • 1
  • t

    Tanner

    10/17/2018, 3:53 PM
    nevermind, solved it by
    Please name relations or change the schema in steps.
    …..sorry 😞
    u
    • 2
    • 1
  • e

    ericsonluciano

    10/18/2018, 1:19 PM
    anyone have idea with this error
    Field \"id\" is not defined by type CompanyCreateOneWithoutDepartmenrsInput at value.company.",
    n
    • 2
    • 1
  • j

    joar

    10/18/2018, 3:02 PM
    A fair amount of this today
    CloudFront attempted to establish a connection with the origin, but either the attempt failed or the origin closed the connection.
  • j

    joar

    10/18/2018, 3:02 PM
    when trying to deploy
  • j

    joar

    10/18/2018, 3:12 PM
    Seems its related to oversized bundles. Fixed by pruning my .git folder a bit. Any way to ignore certain files/folders @nilan?
    • 1
    • 1
  • j

    joar

    10/18/2018, 3:22 PM
    Sorry for the spam but huge advice for anyone still running graphcool: Running
    git gc
    reduced my graphcool deploy time from 180s to 20s
    u
    • 2
    • 3
  • t

    Todd

    10/20/2018, 7:52 PM
    is the source for the prism.io website open?
    d
    • 2
    • 2
  • t

    Todd

    10/20/2018, 7:52 PM
    *prisma
  • s

    Sach97

    10/22/2018, 8:43 AM
    Hi guys, am I the only one with caching issues from github ?
    n
    d
    +2
    • 5
    • 4
  • n

    nilan

    10/24/2018, 9:58 AM
    https://twitter.com/_marktani/status/1055035261464256513
    👍 4
    t
    • 2
    • 1
  • j

    Jason Ryer

    10/29/2018, 5:57 AM
    Hi, I’m Jason Ryer. I design, create, market and sell iPhone and Android apps for companies in Health (& Wellness). I also coach people to improve their health, business, and overall quality of life. I help fellow programmers who want to break free from the stereotype: fat, weak, underappreciated computer geeks - to strong “ninja warriors” … from tired and distracted - to incredibly focused and productive.
    😋 2
    🔥 1
  • o

    obouchta

    10/29/2018, 11:35 PM
    Hello, I am new using prisma and I'm interested by the product. Can I know when the mongoDB API will be available approximately ? Thank you.
    h
    d
    p
    • 4
    • 5
  • a

    Alejandro Estrada

    10/30/2018, 6:24 PM
    Hi, I just created a demo using Jest and easygraphql-tester to show how easy is to tests Queries and Mutations on GraphQL https://codesandbox.io/s/42m2rx71j4
    👍 1
    🙌 2
  • m

    Matt Howey

    10/30/2018, 10:28 PM
    Hi all - I'm not sure how I got added here..so sorry for the naïvety, but is Prisma similar to Hasura, just on MySQL?
    e
    l
    l
    • 4
    • 4
  • d

    Dmitry

    11/01/2018, 8:40 PM
    Hi everyone! Is there anybody from Russia? Do you have any problems with prisma.io? For example I can’t visit this site and my queries only pending but I don’t get back any response
  • d

    Dmitry

    11/01/2018, 8:41 PM
    Maybe something happened and I don’t know about this
    a
    • 2
    • 1
  • s

    sebasegura97

    11/05/2018, 12:19 AM
    Hello! I'm new in Prisma, and i don't know if it is what i need... I have a frontend application with react native but i don't have any data or server yet so i need some way easy to store and request data at first... would prisma solve it?
    h
    y
    • 3
    • 8
  • u

    urigo

    11/05/2018, 2:28 PM
    Hi! Today I've open sourced
    GraphQL Modules
    - a toolset we've been developing for a few months which will help create reusable GraphQL based modules and scale your GraphQL servers. https://medium.com/the-guild/graphql-modules-feature-based-graphql-modules-at-scale-2d7b2b0da6da It is a bunch of individual libraries that you can use separately if you believe like us that you should spilt your GraphQL servers into feature based modules. I would love to hear any feedback or questions! 🙂
    👏🏻 6
    🎉 4
    fast parrot 6
    🔥 1
    👍 2
    d
    s
    • 3
    • 9
  • c

    cedric

    11/07/2018, 7:53 PM
    hi all, my team and i are exploring yoga + prisma and we have a pretty basic question regarding fragments (want to proxy the fragment issued in a mutation direct to apollo to hint at lazy fetching)
    • 1
    • 17
  • c

    cedric

    11/08/2018, 1:30 AM
    simple question, i'm deploying a prisma cloud server to heroku. it seems to set a random
    managementApiSecret
    but the playground appears to be wide open to the public internet and i can run all sorts or queries and mutations. how do i prevent other people from accessing the endpoints and running something like
    Copy code
    mutation {
      deleteManyUsers {
        count
      }
    }
    • 1
    • 1
  • h

    HAL

    11/08/2018, 11:36 AM
    Morning all! Just started getting into graphQL and Prisma, does anyone know how far in development the MS SQL connector is? cheers 🙂
    s
    • 2
    • 1
1...242526...53Latest