https://www.prisma.io/ logo
Join SlackCommunities
Powered by
# prisma-whats-new
  • j

    jsan

    02/19/2018, 11:21 AM
    can't do anything
  • j

    jsan

    02/19/2018, 11:21 AM
    does anyone else having this issue?
  • l

    lawrence

    02/19/2018, 12:20 PM
    Anyone know if it’s possible to query nodes using
    where
    , based on if it contains an empty array?
    n
    • 2
    • 1
  • w

    Waweru

    02/19/2018, 12:56 PM
    Is it OK to access one database with two endpoints, eg with PHP in web app and GraphQL in mobile app? Or should I create one API to use for both web and mobile?
    h
    n
    • 3
    • 3
  • p

    patrick_madx

    02/19/2018, 1:44 PM
    Copy code
    ERROR: GraphQL Error (Code: 504)
    
    {
      "error": "<html>\r\n<head><title>504 Gateway Time-out</title></head>\r\n<body bgcolor=\"white\">\r\n<center><h1>504 Gateway Time-out</h1></center>\r\n</body>\r\n</html>\r\n",
      "status": 504
    }
    Anyone else experiencing the same issue?
    n
    • 2
    • 3
  • h

    halborg

    02/19/2018, 1:58 PM
    Anyone had any luck using environment variables (perhaps with the
    dotenv
    package) in the graphcool-framework v11.5? It seems to have been implemented in Prisma, but can’t get it to work in GCF, and the issues/docs are somewhat confusing and mixing the two up 🙂
    m
    • 2
    • 8
  • v

    Vakrim

    02/19/2018, 2:04 PM
    How to drop all tables using prisma cloud? Tried to deploy empty schema but it freezes 😞
    a
    j
    • 3
    • 6
  • a

    Avi Block

    02/19/2018, 2:12 PM
    I have a cluster hosted in an EC2 instance. I just updated it (
    prisma local upgrade
    ) and now when I deploy I get the following error:
    Authentication token is invalid: Token can't be decoded: Invalid signature for this token or wrong algorithm
  • a

    Avi Block

    02/19/2018, 2:18 PM
    seems the clusterSecret changed when I upgraded
    n
    • 2
    • 3
  • a

    Avi Block

    02/19/2018, 2:22 PM
  • o

    omatrot

    02/19/2018, 2:30 PM
    I need to write a resolver/webhook to handle a readonly external table. Am I able inside this resolver/webhook to know the restriction on the global query that joins my external table ?
    n
    • 2
    • 1
  • s

    Stefano T

    02/19/2018, 2:47 PM
    Hi, is anyone experiencing issues with functions?
    f
    • 2
    • 2
  • p

    pbandjs

    02/19/2018, 5:32 PM
    Hi, does anybody have any info on the pricing of the new graphcool cloud?
    d
    • 2
    • 1
  • t

    Todd Humphrey

    02/19/2018, 6:31 PM
    anyone experiencing issues with the public cloud instances of prisma? Mine I have been working with the past week or so is not responding. https://us1.prisma.sh/public-seasonfancier-667/htc-files/dev playground loads, but the server doesn’t respond to any query
    l
    n
    • 3
    • 3
  • t

    Todd Humphrey

    02/19/2018, 6:32 PM
    Copy code
    Error: Server response was missing for query 'null'.
        at u (<https://cdn.jsdelivr.net/npm/graphql-playground-react/build/static/js/middleware.js:1:1675422>)
        at <https://cdn.jsdelivr.net/npm/graphql-playground-react/build/static/js/middleware.js:1:1675832>
        at <anonymous>
  • h

    horia.ancas

    02/19/2018, 6:33 PM
    hello, is there a way to run prisma using a
    docker-compose.yml
    ?
    a
    • 2
    • 32
  • h

    horia.ancas

    02/19/2018, 6:34 PM
    I’m having problem installing the cli on a limited server, but docker is running fine, so I’d like to go on this route
  • t

    Todd Humphrey

    02/19/2018, 7:20 PM
    after logging in via
    prisma login
    and running
    prisma delete
    prisma deploy
    , It now has me deployed to
    <https://us1.prisma.sh/htc-files/dev>
    instead of a public one? I am still getting no response in the playground, and the Authorization token has been added:
    Copy code
    Error: Server response was missing for query 'null'.
        at u (<https://cdn.jsdelivr.net/npm/graphql-playground-react/build/static/js/middleware.js:1:1675422>)
        at <https://cdn.jsdelivr.net/npm/graphql-playground-react/build/static/js/middleware.js:1:1675832>
        at <anonymous>
    l
    n
    • 3
    • 8
  • j

    jof

    02/19/2018, 7:22 PM
    I appear to be missing something fundamental here. I've added a field
    thing
    to the User type in both datamodel.graphql and schema.graphql and ran deploy and only the database part of playground has been updated; not app. What am I doing wrong?
    l
    • 2
    • 6
  • j

    jof

    02/19/2018, 7:34 PM
    deploy
    hangs when I make a field that was previously optional now required and where there's already data which was entered prior to the field being required... Is there a way to run migrations on the database or something to fix this? I.e.
    Copy code
    myThingInDatabase = {blah: "Asd"}
    type Thing {
      blah: String
      foo: String
    }
    
    ===>
    
    myThingInDatabase = {blah: "Asd"}
    type Thing {
      blah: String
      foo: String!
    }
    `
    ^ Hangs on deploy
    t
    l
    n
    • 4
    • 15
  • h

    horia.ancas

    02/19/2018, 8:12 PM
    I’m trying to create a prisma cluster on my server and I see this in the logs of `prisma_database`:
    Copy code
    Caused by: java.lang.IllegalArgumentException: Incorrect port value : "3306"
  • h

    horia.ancas

    02/19/2018, 8:13 PM
    Copy code
    Exception in thread "main" java.sql.SQLTransientConnectionException: internalRoot - Connection is not available, request timed out after 5001ms
    a
    • 2
    • 4
  • n

    noahdavis

    02/19/2018, 8:35 PM
    Looking at our instance deployed to Prisma cloud, we are only getting access to the generated schema, and not our customer queries and mutations. Has anyone else experienced this?
    l
    f
    • 3
    • 10
  • h

    horia.ancas

    02/19/2018, 9:35 PM
    need some help with
    docker-compose
    here: https://www.graph.cool/forum/t/docker-compose-incorrect-port-value-3306/2605
  • b

    bruce

    02/19/2018, 10:17 PM
    Do functions not fire on file record creation? Seems like they do fire on update, but I upload via fetch nothing fires for the create. Anyone know?
    n
    • 2
    • 1
  • t

    Taylor

    02/19/2018, 11:27 PM
    So I’ve made a React component to create a new post. However, nothing happens on the Graphcool Cloud end. I know it’s communicating with Graphcool just fine, because I have another component that just does a normal query and not a mutation. It works like it’s supposed to. Any idea what I’m doing wrong? Here’s the code: https://gist.github.com/taylorbryant/86994a4cc2bb87d291e1e4349723b809
    n
    • 2
    • 1
  • r

    Rory Kelly

    02/19/2018, 11:34 PM
    How much memory should the prisma cluster consume? Prisma running locally is using almost half a gig, is this normal?
  • a

    auser

    02/19/2018, 11:39 PM
    @Taylor are you seeing anything in the network console?
    t
    h
    • 3
    • 6
  • i

    Isaiah Grey

    02/19/2018, 11:41 PM
    Hi, I am looking for info on ACL with GraphCool. Would like the ability to have an specific role able to modify these permissions layers. So far everything I’ve read seems static and predefined without a way to tune by a user.
  • n

    nampdn

    02/19/2018, 11:44 PM
    Hello devs, how can we run an instance of Graph Cool using docker in my server together with the database?
1...579580581...637Latest