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

    kaihuang724

    05/31/2017, 1:41 PM
    Hey all - I'm still getting an error in the console when trying to add a new type:
    Whoops. Looks like an internal server error. Please contact us in Slack (<https://slack.graph.cool>) and send us your Request ID: cj3d1hy5pnu500185v526oe8i
    n
    • 2
    • 2
  • j

    joar

    05/31/2017, 1:51 PM
    Has anyone here used auth0 social signin without using their
    lock
    module in react native?
    n
    • 2
    • 1
  • j

    joar

    05/31/2017, 1:52 PM
    The
    react-native-lock
    package is… incredibly sub-par, but I need social sign in
  • n

    nolan

    05/31/2017, 2:46 PM
    Hey, I'm a blind screen reader user trying to use your service, and there are unfortunately some pretty major accessibility issues. They'd be fairly easy to fix on your end and would mainly involve using standard HTML controls for things (I.e. in the permission editor.) But how likely is this to happen?
    n
    • 2
    • 1
  • n

    nolan

    05/31/2017, 2:47 PM
    I'm using graphcool to build an app prototype, and we may opt to use it in production, but I can't recommend it if I can't use it. :(
  • n

    nolan

    05/31/2017, 2:47 PM
    nilan: Sweet, thanks!
    πŸ‘ 1
  • n

    nolan

    05/31/2017, 2:48 PM
    Just yesterday I attempted to wipe my app's data, and the alert dialog I get is entirely keyboard-inaccessible. :(
    n
    • 2
    • 1
  • n

    nolan

    05/31/2017, 2:51 PM
    Also, a non-accessibility question, we may wish to expose our endpoint to others, so someone might write plugins and such that use our service. Will it ever be possible to assign a subdomain to an endpoint, so maybe I could CNAME api.example.com at somewhere.graph.cool and set that up as an endpoint?
    n
    • 2
    • 1
  • n

    nolan

    05/31/2017, 2:52 PM
    nilan: That would be hugely helpful, yes. And in general it helps to use standard HTML controls, so for instance I think there are selection toggles in the permission dialog that maybe expose their state by appearance?
  • n

    nolan

    05/31/2017, 2:53 PM
    You could just use checkboxes for those. The alternative is using the appropriate ARIA attributes, which is more complex and requires specialized knowledge.
  • e

    emil

    05/31/2017, 2:56 PM
    General graphql/graphcool question: How do I create custom queries? I want to search for strings that contain certain values I read this https://stackoverflow.com/questions/37981269/how-to-search-string-values-in-graphql but have no idea how to implement it in graphcool …
    n
    • 2
    • 2
  • n

    nolan

    05/31/2017, 3:00 PM
    nilan: I don't know that you can 301/302 a POST request and have the payload redirected.
  • n

    nolan

    05/31/2017, 3:01 PM
    I could set up a proxy, but then I'm no longer serverless. :)
  • m

    marika.w

    05/31/2017, 3:07 PM
    Hello the docs are inaccessible at the moment https://graph.cool/docs/
  • n

    nilan

    05/31/2017, 3:14 PM
    Hey everyone and @marika.w it looks like Netlify, our hosting provider, is hitting a major outage at the moment which means that our homepage, documentation and forum need to be accessed using https://www.graph.cool, https://www.graph.cool/docs and https://www.graph.cool/forum. The Console and the APIs are unaffected by this, stay tuned!
    • 1
    • 1
  • m

    marika.w

    05/31/2017, 3:28 PM
    What are the parameters for
    authenticateAnonymousUser
    mutation?
    n
    • 2
    • 1
  • t

    titirex

    05/31/2017, 3:42 PM
    Is it possible to have only one parameter for a create mutation? I have a schema for
    MyNode
    where all fields are computed in the pipeline. So when I call my mutation
    createMyNode
    I don't want to have the possibility to add other parameter except the one I want. Today, I simply ignore them, and mark all of them as optional. But it's confusing in the doc πŸ™‚ I could just write in the description something like
    "Ignore on create mutation"
    n
    • 2
    • 1
  • a

    artyom

    05/31/2017, 3:57 PM
    @nix @mxmzb @roberto @karn @andinh hello there, glad you’re joining us today! graphcool πŸ™Œ
    πŸ™Œ 3
    πŸ™‚ 1
  • a

    artyom

    05/31/2017, 3:57 PM
    special welcome to @drbroad πŸ‘‹ πŸ˜‰
    πŸ‘ 1
  • d

    drbroad

    05/31/2017, 4:03 PM
    @artyom , G'day!
    🀘 1
  • k

    kaihuang724

    05/31/2017, 7:44 PM
    Hey guys - is there any way to update a node and connect it to another relational data using anything other than the ID?
    n
    • 2
    • 2
  • c

    chrishurlburt

    05/31/2017, 8:37 PM
    Hey, im running into an error in the graph cool playground. this is appearing in the right column
    -.txt
  • p

    pbassut

    05/31/2017, 9:03 PM
    Can someone help: https://github.com/graphcool/babel-plugin-react-relay/issues/20 ?
  • p

    pbassut

    05/31/2017, 9:04 PM
    Our app is crashing when sending it to the appStore
  • p

    pbassut

    05/31/2017, 10:28 PM
    @kaihuang724 I don't think graphcool or graphql supports anything other than the ID as the primary key
    k
    • 2
    • 4
  • l

    lastmjs

    05/31/2017, 10:37 PM
    I'm trying to set up a web socket connection to my subscription endpoint. I'm using the basic syntax
    new WebSocket(endpointString)
    and I'm getting a 400 error. Is there something simple I am missing?
  • p

    pbassut

    05/31/2017, 10:39 PM
    @lastmjs Yes. There's an initial handshake.
  • p

    pbassut

    05/31/2017, 10:39 PM
    I tried to do it by hand but couldn't. Then I started using apollo for subscriptions.
  • p

    pbassut

    05/31/2017, 10:40 PM
    You have two options there if you're using relay classic: either upgrade to relay modern that supports subscription, or use apollo only for the subscription part of your app.
  • l

    lastmjs

    05/31/2017, 10:43 PM
    Thanks @pbassut I would like to do it by hand, but I'll keep Apollo in mind. There is no documentation on setting up the web socket connection like there is for using plain http for queries and mutations @nilan
1...208209210...637Latest