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

    sorenbs

    04/03/2017, 10:12 PM
    Hey @stlbucket - can you send me your project id in a pm?
  • a

    artyom

    04/03/2017, 10:13 PM
    welcome to graphcool @zaknbur 👋
  • a

    alphy

    04/04/2017, 12:52 AM
    subscription_with_alias.txt
  • a

    alphy

    04/04/2017, 12:53 AM
    Hey all, are there any issues on aliasing subscriptions? Or am I missing something, I have this query, and if I remove the alias on the Monster, it work perfectly. But with the alias, it never returns anything
    n
    • 2
    • 2
  • j

    jeffdiers

    04/04/2017, 1:47 AM
    Does anyone know how to style the Auth0 lock using react native?
  • w

    wallslide

    04/04/2017, 3:05 AM
    I have a schema that looks like this
    Copy code
    type EventPayment {
     id: ID!
     log: [EventPaymentLog!]! @relation(name: "EventPaymentLogOnEventPayment")
     status: EVENT_PAYMENT_STATUS!
    }
    I want to update the EventPayment with a new status and log entry. What is the syntax for adding a new log entry? Can I do that using a nested mutation, or is that not possible since there's a one-to-many relationship between EventPayment and EventPaymentLog?
    n
    • 2
    • 4
  • r

    ravikiran

    04/04/2017, 5:40 AM
    I have to add a node to a model at certain intervals from an external datasource. is it possible without any mutation trigger?
    s
    • 2
    • 18
  • a

    alphy

    04/04/2017, 5:56 AM
    Also, I am trying to subscribe to an item, and when I include my enum value in the requested item, it seems to cause the subscription to fail
  • a

    alphy

    04/04/2017, 5:57 AM
    statusEffects_being_removed_makes_the_query_work__else_it_is_broken_.txt
  • u

    user

    04/04/2017, 5:57 AM
    @alphy commented on @alphy’s file https://prisma.slack.com/files/U4T8CP2R3/F4U29H3C4/statuseffects_being_removed_makes_the_query_work__else_it_is_broken_.txt: But, the same thing as a query works just fine.
    statusEffects_being_removed_makes_the_query_work__else_it_is_broken_.txt
  • a

    alphy

    04/04/2017, 5:57 AM
    statusEffects_being_removed_makes_the_query_work__else_it_is_broken_.txt
  • t

    thoaionline

    04/04/2017, 8:15 AM
    is there a way to set object level permission along the line of "the authenticated user can only update fields X, Y, Z of
    Posts
    that he created"? this is a deal-breaker for using GC in any production applications.
    n
    h
    c
    • 4
    • 3
  • u

    user

    04/04/2017, 8:19 AM
    @nilan commented on @alphy’s file https://prisma.slack.com/files/U4T8CP2R3/F4U29H3C4/statuseffects_being_removed_makes_the_query_work__else_it_is_broken_.txt: what do you mean with "broken", what is the observed behaviour? Is this in the playground or in your code? What are the permissions for
    statusEffects
    and is it an authenticated request?
    statusEffects_being_removed_makes_the_query_work__else_it_is_broken_.txt
  • u

    user

    04/04/2017, 8:19 AM
    @nilan commented on @alphy’s file https://prisma.slack.com/files/U4T8CP2R3/F4U29H3C4/statuseffects_being_removed_makes_the_query_work__else_it_is_broken_.txt: 🙂
    statusEffects_being_removed_makes_the_query_work__else_it_is_broken_.txt
  • a

    artyom

    04/04/2017, 8:40 AM
    @navjeetc @fedeb @adamibaker @ravikiran @meghana @nuttawuth @thoaionline @djuko nice to have you here, welcome! graphcool 🚀
  • n

    nuttawuth

    04/04/2017, 8:41 AM
    hi, could anyone point me to using graphcool with mapbox in real-time tracking?
    n
    • 2
    • 2
  • d

    djuko

    04/04/2017, 8:41 AM
    Thank you! Hi everyone 😄
    👋 1
  • a

    artyom

    04/04/2017, 11:36 AM
    hello @andreassahle @insidersbyte nice to have you join graphcool
  • i

    insidersbyte

    04/04/2017, 11:43 AM
    👋
    👋 2
  • a

    artyom

    04/04/2017, 12:13 PM
    @almas 👋
  • a

    almas

    04/04/2017, 12:13 PM
    HELLO!
    a
    • 2
    • 1
  • j

    jfa

    04/04/2017, 12:19 PM
    hi there 👋
    👋 2
  • a

    artyom

    04/04/2017, 12:20 PM
    hi there back @jfa 👋
    👋 1
  • j

    jfa

    04/04/2017, 12:24 PM
    just a quick question: is it possible to use "unions" with graphql-up?
    a
    n
    • 3
    • 7
  • j

    jwtechdev

    04/04/2017, 12:33 PM
    Hope to try our GraphCool this week I am part of startup and I am in charge of cloud infrastructure, any guidance besides the docs @artyom
    n
    • 2
    • 15
  • k

    kitze

    04/04/2017, 1:32 PM
    Hey guys 🙂 Random question: Do you know anyone that is willing to do contract work on node, apollo, graphql-tools for 1-2 months?
    a
    n
    q
    • 4
    • 5
  • a

    artyom

    04/04/2017, 1:35 PM
    hi @theo, welcome! graphcool
  • t

    theo

    04/04/2017, 1:37 PM
    hi everyone
    🎉 1
    👋 2
  • u

    user

    04/04/2017, 4:52 PM
    @alphy commented on @alphy’s file https://prisma.slack.com/files/U4T8CP2R3/F4U29H3C4/statuseffects_being_removed_makes_the_query_work__else_it_is_broken_.txt: I have zero permissions set on any objects I have. statusEffects is a enum local to the Monster. So I cannot, to my knowledge modify any permissions on that alone. And by broken, I mean in the most general sense of the word. In the playground, it never returns anything, no matter what I change. Whereas if I remove statusEffects from the query, I get data on the same changes.
    statusEffects_being_removed_makes_the_query_work__else_it_is_broken_.txt
  • a

    adamibaker

    04/04/2017, 5:41 PM
    hi there. i'm finding the graphcool documentation a little thin, especially for a beginner. on this page: https://www.graph.cool/docs/reference/simple-api/queries-nia9nushae/ it says: All queries are automatically generated. To explore them, use the playground inside your project. Is there a comprehensive list or description of how these queries are generated? i see a couple of examples like
    allUsers
    or
    allPosts
    — but there must be many more.
    👍 1
1...142143144...637Latest