https://www.prisma.io/ logo
Join SlackCommunities
Powered by
# orm-help
  • c

    cb

    02/06/2019, 9:33 PM
    For deployment, you can use docker to deploy prisma anywhere that has container support
  • l

    Luca

    02/06/2019, 9:38 PM
    ah right so I can just deploy with my bare metal servers running kubernetes? and prisma cloud is just optional?
  • c

    cb

    02/06/2019, 9:38 PM
    yep
  • c

    cb

    02/06/2019, 9:38 PM
    we run ours on ecs
  • l

    Luca

    02/06/2019, 9:39 PM
    about go: I just want to have a Go server component, probably like this: https://github.com/prisma/prisma-examples/tree/master/go/graphql. the client will be javascript
  • c

    cb

    02/06/2019, 9:41 PM
    Interesting, that must be newish. I have not seen that before
  • c

    cb

    02/06/2019, 9:45 PM
    @Luca that go example looks like it combines prisma with a server, instead of having the 2 separate, unless im reading it wrong
    l
    • 2
    • 2
  • c

    CCBCodeMonkey

    02/06/2019, 10:28 PM
    hey if I am doing a query with a nested list, can I limit the return of the nested list?
  • c

    CCBCodeMonkey

    02/06/2019, 10:28 PM
    this seems pretty important to be able to do...
  • t

    tayo

    02/07/2019, 2:16 AM
    Hi everyone, please am getting this error from my prisma demo server
    • 1
    • 1
  • c

    CCBCodeMonkey

    02/07/2019, 2:18 AM
    @tayoI get that error too from my demo server
    t
    • 2
    • 17
  • a

    Andrei Bacescu

    02/07/2019, 8:05 AM
    Hello guys. Do you know any code examples where prisma client and prisma binding are used in tandem? Thanks in advance,
  • t

    Thomas Tran

    02/07/2019, 8:56 AM
    Hi I am new to the prisma and I just wondering who can help to answer the following question
  • t

    Thomas Tran

    02/07/2019, 8:57 AM
    I need to build the search api for property management system. The search query will be dynamic with lot of filter such as bedroom, price range and so on
    k
    m
    t
    • 4
    • 8
  • t

    Thomas Tran

    02/07/2019, 8:57 AM
    How can I do it using prisma, do you have any example
  • t

    Thomas Tran

    02/07/2019, 8:58 AM
    I am using microsoft dot net mvc
  • e

    ervindraganovic

    02/07/2019, 1:08 PM
    Hi guys, is anyone familiar with this error
    ✖ Field organisation: Couldn't find type OrganisationCreateOneWithoutCreatorInput in any of the schemas.
    p
    • 2
    • 2
  • a

    Aitor

    02/07/2019, 1:19 PM
    Apollo Server or Prisma?
  • a

    Aitor

    02/07/2019, 1:20 PM
    Prisma do support relay?
    h
    • 2
    • 8
  • d

    domko

    02/07/2019, 4:31 PM
    is cascading delete supported on mongo db? always getting this error:
    [GraphQLError: The change you are trying to make would violate the required relation 'OrganizationToSpace' between Organization and Space]
    h
    • 2
    • 4
  • b

    Benoit

    02/07/2019, 4:49 PM
    Hi guys, when i try: - prisma deploy - I got the following error: - Could not connect to server at http://localhost:4466... docker ps: CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 373dccc08b27 prismagraphql/prisma:1.8 "/bin/sh -c /app/sta…" 5 minutes ago Up 8 seconds 0.0.0.0:4466->4466/tcp prisma_prisma_1 09566f9e2e22 postgres "docker-entrypoint.s…" 5 minutes ago Up 5 minutes 5432/tcp prisma_postgres_1 If, i look into the logs , i got: Exception in thread "main" java.sql.SQLTransientConnectionException: database - Connection is not available, request timed out after 5000ms. at com.zaxxer.hikari.pool.HikariPool.createTimeoutException(HikariPool.java:548) at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:186) at com.zaxxer.hikari.pool.HikariPool.getConnection(HikariPool.java:145) at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:83) at slick.jdbc.hikaricp.HikariCPJdbcDataSource.createConnection(HikariCPJdbcDataSource.scala:18) at slick.jdbc.JdbcBackend$BaseSession.<init>(JdbcBackend.scala:439) at slick.jdbc.JdbcBackend$DatabaseDef.createSession(JdbcBackend.scala:47) at slick.jdbc.JdbcBackend$DatabaseDef.createSession(JdbcBackend.scala:38) at slick.basic.BasicBackend$DatabaseDef.acquireSession(BasicBackend.scala:218) at slick.basic.BasicBackend$DatabaseDef.acquireSession$(BasicBackend.scala:217) at slick.jdbc.JdbcBackend$DatabaseDef.acquireSession(JdbcBackend.scala:38) at slick.basic.BasicBackend$DatabaseDef$$anon$2.run(BasicBackend.scala:239) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) Caused by: org.postgresql.util.PSQLException: The connection attempt failed. at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:257) at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:49) at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:195) at org.postgresql.Driver.makeConnection(Driver.java:452) at org.postgresql.Driver.connect(Driver.java:254) at slick.jdbc.DriverDataSource.getConnection(DriverDataSource.scala:101) at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:341) at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:193) at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:430) at com.zaxxer.hikari.pool.HikariPool.access$500(HikariPool.java:64) at com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:570) at com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:563) at java.util.concurrent.FutureTask.run(FutureTask.java:266) ... 3 more I've tried: - docker-compose kill - docker-compose down - docker compose up -d still the same error Anyone can help me, plz?
    h
    • 2
    • 4
  • h

    Henry

    02/07/2019, 6:23 PM
    So, how does GraphQL Nexus work with Graphqlgen? The way I see it they both accomplish similar purposes
  • h

    Henry

    02/07/2019, 6:24 PM
    Is GraphQL nexus the intended replacement for GQLGen as it is code-first rather than sdl-first?
    l
    t
    • 3
    • 2
  • j

    jdoyle112

    02/07/2019, 8:58 PM
    Has anyone here exported a prisma service database before using the api? I’m having some truble
  • h

    harrisrobin

    02/07/2019, 9:37 PM
    Can anyone share their experience with me running Prisma on AWS Fargate? Specifically, was it easy to upgrade Prisma version on Fargate?
  • j

    jdoyle112

    02/07/2019, 9:40 PM
    I literally just finished that process lol
  • j

    jdoyle112

    02/07/2019, 9:41 PM
    Haven’t had to upgrade prisma version but the setup isn’t too difficult and the results I’m seeing as far as response time from the server are significantly better than Heroku and Zeit now. Like 2-3X better
    👍 2
    h
    • 2
    • 4
  • c

    cb

    02/07/2019, 10:07 PM
    We have had it running on fargate for a while, done several version upgrades
    h
    • 2
    • 6
  • m

    Michael Yiu

    02/07/2019, 10:54 PM
    Found https://www.prisma.io/docs/get-started/01-setting-up-prisma-existing-database-JAVASCRIPT-a003/ and was wondering if anybody know if there was a timeline as to approximately when prisma + existing MySQL db would be available?
    h
    • 2
    • 1
  • d

    dan

    02/08/2019, 12:15 AM
    Is anyone using MongoDB Atlas as their Database as a service with their Prisma Server?
    h
    • 2
    • 6
1...205206207...637Latest