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

    Mike

    08/07/2019, 11:00 PM
    @Greg Teixeira No, it's not backwards compatible at all. It's not even the same category of product. Prisma1 is a HTTP microservice that translates between GraphQL and SQL, so your database can speak GraphQL. Prisma2 is just an ORM, nearly identical to TypeORM or Sequelize. Aside from the name, they have literally nothing in common
    💯 1
    👍 1
    a
    f
    • 3
    • 3
  • m

    metaheap

    08/08/2019, 2:35 AM
    I'm really liking prisma2 so far; thank you to those involved! I got prisma2 running in EC2 (using pulumi) connecting to aurora serverless postgresql with blue/green deployments working for the most part 🙂 (https://graphql.fleetgrid.ocm). I've run into an issue with migrating the DB however... In my deployment script in gitlab-ci (which uses a node:12 docker container) for some reason gives me an error when I run `prisma2 lift up`:
    Copy code
    Error: Error in lift engine for rpc listMigrations:
      thread 'main' panicked at 'The user does not have root privelege and can not create a new database: QueryError(Error { kind: Connect, cause: Some(Os { code: 111, kind: ConnectionRefused, message: "Connection refused" }) }
    Any ideas? My fall back is just to run the migrations from local machine rather than in gitlab-ci.
    j
    d
    • 3
    • 6
  • a

    Akshay Kadam (A2K)

    08/20/2019, 4:11 PM
    Hey ya'll if anyone worked with Prisma2 + Nexus, my subscriptions aren't working. Not sure what I'm doing wrong. Here's my StackOverflow question → https://stackoverflow.com/q/57577464/6141587
    d
    • 2
    • 1
  • g

    Gyejoong

    08/23/2019, 10:14 AM
    Hi
  • n

    Nikhil

    08/23/2019, 10:31 AM
    Hi All, I just wanted to know if there is any open source project which uses Latest Prisma version.
  • k

    Kennah

    08/23/2019, 11:29 AM
    Hello guys am building a web app using next js and graphql-yoga. In graphql-yoga docs they have stated that Middlewares can also be added specifically to the GraphQL endpoint route, by using server.express.post(server.options.endpoint, myMiddleware()). I have tried to implement this on a endpoint '/payment' but its not working. I have tried with all other routes but none is working expect the index route '/'. Why is this happening anyone with an idea.
  • h

    Herbert Pimentel

    08/30/2019, 5:08 PM
    @Kennah did you solve your problem with middlewares ?!
  • h

    Herbert Pimentel

    08/30/2019, 5:09 PM
    using graphql-middleware ? I am facing a problem
    object.fragment
    is undefined with most simple ever setup, I am not sure if it is my mistake or library mistake, any help ?!
    • 1
    • 1
  • k

    KishanAlchemy

    08/31/2019, 9:13 AM
    Can anyone help me to upload an image through graphql in swift? I use apollo library using
    pod 'Apollo', '~> 0.15.0
    pod.
  • s

    Sasa Mocic

    09/02/2019, 4:04 PM
    Hello everyone, can anyone help me a bit with certain problem I ran into after I added secret to yml file?
  • e

    evondev

    09/04/2019, 10:13 AM
    Prisma server running out of memory any one knows how to fix it ?
    t
    • 2
    • 2
  • d

    deactivateduser

    09/04/2019, 5:18 PM
    Can I do GraphQL subscriptions without prisma? Basically running a function when data is added to the db
    c
    d
    • 3
    • 4
  • i

    Isaac Weber

    09/05/2019, 3:49 PM
    What's up ya'll! I created a Prisma Apollo server 2 boilerplate. Check it out! If you like it I would appreciate a ⭐ 🙂
    👍 1
  • i

    Isaac Weber

    09/05/2019, 3:49 PM
    https://github.com/ikey2244/prisma-apollo2#readme
  • o

    Olaf

    09/06/2019, 1:08 AM
    What’s the latest way of implementing schema-level directives to restrict queries/mutations and individual fields?
  • b

    Bruce He

    09/06/2019, 4:16 AM
    Hello everyone.We just ran an server test to see how many requests nexus prisma could handle but turns out that performance is not acceptable to an commercial product. Is there anyone have this issue before?
    h
    • 2
    • 6
  • k

    Kalid Diriye

    09/09/2019, 6:00 PM
    Hi i am new to Prisma and i was flowing to tutorial, and i came to a place that the instructor is using authentication that Prisma implemented but when I create a new project I can't found a typscript-advanced graphql server( database+ authentication) as he used. How can i make get it ?
    j
    • 2
    • 5
  • e

    Erick Takeshi

    09/10/2019, 11:53 AM
    Hello, im following the https://www.howtographql.com/ and I interested in internationalizing the course, im from Brazil. Would be a pleasure to talk to someone that is looking to that kind of stuff (or even start the i18n). someone to contact would be nice, thaanks
  • s

    Shoyad

    09/12/2019, 8:11 PM
    Hello please help me about type/support
  • s

    Shoyad

    09/12/2019, 8:11 PM
    https://github.com/prisma/nexus-prisma/issues/404
  • d

    deactivateduser

    09/13/2019, 1:42 AM
    hey can someone point me into the right direction? I wanna do a simple relation between a post and a user and I would like to learn more about handling these kind of data with graphql
    🙌 1
  • m

    Martí Crespí

    09/13/2019, 5:35 AM
    Please, I need some help. I must to solve this issue to deploy it properly (nexus)
  • m

    Martí Crespí

    09/13/2019, 5:35 AM
    https://github.com/prisma/nexus-prisma/issues/369
  • z

    Zane Hitchcox

    09/14/2019, 2:09 AM
    Does anyone have a more complex open source example of Prisma in typescript? The one at https://github.com/prisma/prisma-examples/tree/master/typescript/graphql-auth is great, but it's really simple. I'd like to see how a real world application is structured, preferably with React, but that is not necessary.
  • j

    Joey

    09/14/2019, 2:28 AM
    Does the DateTime type only work for MySql? I'm getting this error in Postgres: Field createdAt: Couldn't find type DateTime in any of the schemas. I noticed the advanced template app uses DateTime, but it doesn't define it anywhere as a scalar, it just works
  • z

    Zane Hitchcox

    09/14/2019, 4:58 PM
    So, I guess no one actually answers questions here, it doesn't look like. where do they actually answer questions? Oh wait...
    t
    a
    • 3
    • 3
  • c

    Carl Bowen

    09/14/2019, 11:37 PM
    Hi guys. Any idea how to migrate from Yoga/Prisma server to Gql/Prisma Nexus please? Much appreciated!!! Was directed to this but it's proving a little hard of a transition: https://www.prisma.io/blog/introducing-graphql-nexus-code-first-graphql-server-development-ll6s1yy5cxl5
    a
    • 2
    • 1
  • d

    dennis

    09/15/2019, 1:22 PM
    Hi, Does anyone here encountered an issue that connecting docker to a database that is hosted on the host machine. I have been following prisma tutorial on how to connect to an existing database. But unfortunately i got an error "Connection is not available" as i checked the docker logs. I'm stuck on this issue for a month now, some workaround that i found online aren't working. Maybe somebody here can help. Thanks. Btw, i'm using windows 10 and docker toolbox.
  • a

    Andrew O.

    09/17/2019, 8:24 PM
    I want to share a blog post I wrote on creating a custom scalar with Nexus. https://fullstackdatasolutions.com/creating-datetime-scalar-with-nexus-graphql/
    👍 1
    👀 1
    🙌 1
    p
    r
    • 3
    • 5
  • d

    doums

    09/20/2019, 10:15 AM
    Hi all! I post here because I had no response from general chan. here is my question: Does Prisma"1" with
    nexus-prisma
    support graphql subscriptions ? Same question for Prisma2 and
    nexus-prisma2
    ? Thanks 🙂
    a
    • 2
    • 3
1...343536...53Latest