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

    siyfion

    07/27/2017, 12:59 PM
    I agree with @karthikvarma Chromeless is awesome! 😄
    👍 1
  • j

    joar

    07/27/2017, 1:13 PM
    Does anyone know which PCI compliance level graph cool is at?
  • s

    siyfion

    07/27/2017, 1:15 PM
    @joar https://github.com/graphcool/content/blob/master/static/legal/terms.md#data-centers
  • s

    siyfion

    07/27/2017, 1:16 PM
    ie. Level 1 from the looks of it.
  • b

    brian.rdd

    07/27/2017, 1:39 PM
    hey all! I’m trying to use the AWS Lambda Proxy, but running into this: “Error: Unable to get presigned websocket URL and connect to it.”
    n
    • 2
    • 2
  • b

    brian.rdd

    07/27/2017, 1:39 PM
    for Chromeless^^
  • b

    brian.rdd

    07/27/2017, 1:39 PM
    surely this is user error…anyone seen this before?
  • b

    benjixx

    07/27/2017, 2:04 PM
    🦜 3
    💯 3
    👍 3
  • e

    edward_s

    07/27/2017, 2:26 PM
    chromeless: anyone else getting Error: Timed out after 30sec. Connection couldn't be established? Been trying for more than 2 hours, how do I solve this issue?
    n
    • 2
    • 1
  • j

    jimthedev

    07/27/2017, 2:27 PM
    hey all, I have a system where a user needs to be able to register for a class. I have my schedule created right now and sign ups work, the trouble is that they can actually sign up more than once per class
  • j

    jimthedev

    07/27/2017, 2:27 PM
    I want them to only be able to sign up once per class
  • j

    jimthedev

    07/27/2017, 2:29 PM
    I was thinking that @isUnique might be the way to go, but since I need to check uniqueness on the relationship and not a scalar I think it won't work
    t
    a
    +3
    • 6
    • 152
  • e

    edward_s

    07/27/2017, 2:42 PM
    i am having this error too, someone please help
  • g

    gilady

    07/27/2017, 2:43 PM
    Hi, I'm new in this. can anyone help me please? how can I run my first chromeless locally? is there any guide for local usage?
    n
    • 2
    • 1
  • a

    aligajani

    07/27/2017, 4:17 PM
    Hello to everyone on the Graph.cool slack.
    👍 1
    👋 2
    n
    • 2
    • 3
  • d

    doug_w

    07/27/2017, 4:47 PM
    Hello to you
  • n

    nephix

    07/27/2017, 5:13 PM
    Do those permissions mean anyone with a graphql client can fetch/create/delete/update all my user’s data? I tried to set the permission of “read” to authenticated but then I was not able to create new user accounts in my app (via
    createUser
    mutation)
  • a

    aligajani

    07/27/2017, 6:08 PM
    May I ask a few questions about the GraphQL community on how they are using Graph.cool on their apps?
    n
    • 2
    • 1
  • u

    user

    07/27/2017, 6:49 PM
    @agartha commented on @nephix’s file

    https://prisma.slack.com/files/U55FFH7MJ/F6FFP7ZM4/screen_shot_2017-07-27_at_19.10.17.png▾

    : Yes, this means that anybody, anywhere can CRUD your data. If you set it to authenticated, you have to make sure you are logged in (using one of the authentication integrations) and pass a valid token in the
    Authorization
    header of your request.
  • s

    swantron

    07/27/2017, 7:07 PM
    any issues on the AWS side? my WIP stopped working
  • s

    swantron

    07/27/2017, 7:07 PM
    same goes for the basic screenshot demo https://chromeless.netlify.com/
    n
    • 2
    • 4
  • s

    swantron

    07/27/2017, 7:08 PM
    TypeError: Failed to fetch
  • m

    michaelsbradleyjr

    07/27/2017, 7:41 PM
    hi, looking at howtographql tutorial
  • m

    michaelsbradleyjr

    07/27/2017, 7:42 PM
    in the React+Apollo series, a schema is created with Link type, but this seems to automatically make available createLink mutation
  • m

    michaelsbradleyjr

    07/27/2017, 7:43 PM
    i..e. w/o requiring schema to indicate `type Mutation { ... }`; can you clarify, maybe I’m confused; how is it
    createLink
    can just work straightaway?
    a
    n
    • 3
    • 6
  • d

    dansteren

    07/27/2017, 8:58 PM
    Hello Everyone, I'm looking for a little help. I'm building a Cordova mobile app that will primarily be used offline, but will eventually sync to graph.cool when the user is online. So, I need some way to handle queries/mutations locally when the user doesn't have an internet connection. Also, because the data created by the users can be edited by other users (think shared google doc) there is a potential for merge conflicts. So, I need to find a way to store/mutate user data locally, sync the local data to graph.cool, and handle merge conflicts in the process. The homegrown solution I am considering involves writing a graphql "server" that runs locally in the app and handles queries and mutations when the user is offline. It would store user data into IndexDB, and then sync with graph.cool when the user is online. However this seems like a lot of work... Alternatively I have been looking at [Redux Offline] (https://github.com/jevakallio/redux-offline). It has a lot of potential and might work, but I'm not sure that it will always save the data locally like I am hoping. I just started looking at it through, so I’m not aware of all it can do, but I’m not sure it will actually solve my problem. Is anyone else dealing with this? Is no one else doing offline-first collaborative projects? Does anyone have experience with Redux Offline or some other tool that will give me the results I need? Any suggestions on the best way to handle this? Thanks in advance! 🙂
  • c

    ckelley

    07/27/2017, 9:53 PM
    Is anyone else receiving 503s from API endpoints/the console?
    😕 1
    👍 1
    a
    n
    • 3
    • 9
  • l

    lancej

    07/27/2017, 10:08 PM
    Hi... I posted on the forum... question too big for slack... https://www.graph.cool/forum/t/updating-child-node-based-on-parent/400
  • p

    patstrz

    07/27/2017, 10:16 PM
    Hi all! Question on schema design. I want to create nested comments ( allow users to reply to comments) and I am thinking of creating two Types
    Comment
    +
    SubComment
    with a one to many relationship. Any reason not to do it this way/ does anyone have a better way? An alternative I was thinking of is relating the Comment type to itself, but seems like mutation names get very messy.
    a
    • 2
    • 1
  • p

    pcooney10

    07/27/2017, 11:03 PM
    Hey, anyone here have experience with graphcool and webtask?
    a
    • 2
    • 47
1...289290291...637Latest