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

    michaelchiche

    01/09/2018, 10:31 PM
    @nilan I really love where graphcool is heading, also I have a question regarding the awesome way graphcool managed permissions, is it in your roadmap to add them back?
    👍 1
  • m

    matty

    01/09/2018, 10:39 PM
    @nilan is there a run-down of all of the features being removed in the 1.0 release? Perhaps some type of migration guide
  • m

    matty

    01/09/2018, 10:39 PM
    I'm getting the sense you guys no longer want to host Graphcool functions, etc
    h
    b
    l
    • 4
    • 6
  • m

    matty

    01/09/2018, 10:40 PM
    I'm still in the very long and drawn out process of migrating from Console to CLI 😔 I wish I could be as excited about another Graphcool revolution as the rest
  • l

    logan

    01/09/2018, 10:46 PM
    anyone have an example of how to use
    ctx.db.mutation.updatePost()
    ?
    m
    • 2
    • 3
  • j

    johnkpaul

    01/09/2018, 11:02 PM
    I'm trying to create an
    allItems
    query, but I can't find out how to leave off a where property on a query. Is there docs for the
    ctx.db.query
    interface somewhere?
    h
    a
    • 3
    • 16
  • d

    donald

    01/10/2018, 1:50 AM
    I'm having a tough time troubleshooting a permission query issue. My permission query to ensure a user can only request their own user node is:
    Copy code
    query ($node_id: ID!, $user_id: ID!) {
      SomeUserExists(filter: {
        AND:[{
          id: $user_id
        },
        {
          id: $node_id
        }
      ]})
    }
    , and the query I'm running is:
    Copy code
    query ($userId: ID!) {
        User (id: $userId) {
          id
        }
      }
    , however I am continually getting an "Insufficient permissions" error. Outside of passing the wrong token, is there anything else I could be doing incorrectly here?
  • e

    efvaldez

    01/10/2018, 6:56 AM
    Hi All, may I ask if I would still need subscription for this. I have a User Submission Page in React. I have a model User that has many Link objects. Thus I loop through user.links, if user want to EDIT or DELETE on of his/her link I just passed the object and create a mutation function. On Delete Mutation I set isDeleted to False. However after seeing isDeleted on an object set to False. I still see that link , I need to refresh to not see it
  • e

    efvaldez

    01/10/2018, 6:59 AM
    Here is my query to find the correct user and his/her links when I click "My Profile Tab" but what my mutation that sets isDelete to False, the link that is "deleted" is still there. I need to refresh to not see it. const FIND_USER_QUERY = gql` query FindUserQuery($userId: ID) { User(id: $userId) { id name email createdAt links(filter{isDeletedfalse}){ id title url description category isDeleted updatedAt createdAt tags{ id name } offers{ id amount comments{ id content } link{ id } } votes{ id } } } } ` @nilan Thanks!
  • k

    KTITS_Tom

    01/10/2018, 8:11 AM
    @nilan Good morning! Are there any news on this: https://www.graph.cool/forum/t/graphcool-1-0-add-where-clause-in-query/2091/8 ?
  • b

    bhupendra

    01/10/2018, 8:20 AM
    hello everyone, I just got started with graphcool and want to integrate relay in an existing react app, any pointers/resources I can look up to?
  • k

    KTITS_Tom

    01/10/2018, 9:05 AM
    Hi, after updating to beta 4.1.1 I got an error when trying to deploy graphcool deploy ! secretOrPrivateKey must have a value anyone else facing this problem?
    m
    • 2
    • 6
  • s

    sash

    01/10/2018, 9:21 AM
    Hello, I've just come across graphcool, and sure indeed it is very cool, at first glance it might be perfect for my use case, but is it okay to double check some highlevel concepts here?
  • s

    sash

    01/10/2018, 9:26 AM
    Would it be a sensible idea to get graphcool to act as back end for a front end API? I am still in the prototyping stage, but in the long run I will most likely shift away from using graphcool's CRUD to using functions querying other services?
  • j

    john

    01/10/2018, 11:37 AM
    Hello: is anyone having issues with their server-side subscriptions not getting properly invoked? (I can see the invocations appearing in the sparkline, but there is nothing appearing in the logs for those events...)
    n
    • 2
    • 1
  • d

    Dieke

    01/10/2018, 1:11 PM
    Hi there, can we ask any questions here?
  • d

    Dieke

    01/10/2018, 1:22 PM
    I'm needing to change our account ownership over to a different email address / user, can someone from Graphcool help me?
    n
    • 2
    • 1
  • j

    johnkpaul

    01/10/2018, 3:26 PM
    How can I query for all items, similar to a
    select * from table_name;
    with no where? I want something like
    ctx.db.query.items.all()
    n
    • 2
    • 20
  • f

    fabien0102

    01/10/2018, 4:04 PM
    Hello everybody, quick question
    graphcool
    or
    graphcool-framework
    ? what is the diff (btw when I install
    graphcool
    I need to do
    graphcool-framework <mycommand>
    so I'm a little bit lost ^^, and the
    graphcool
    readme is not up to date)
    e
    r
    d
    • 4
    • 10
  • l

    Lois

    01/10/2018, 4:58 PM
    Is there any application that can access to any grapghql API?
    m
    • 2
    • 1
  • h

    harmony

    01/10/2018, 5:00 PM
    wdym?
  • l

    Lois

    01/10/2018, 5:00 PM
    I mean I just need to enter the url of the example (such as Github), then I can redirect to the operation page.
  • p

    panzupa

    01/10/2018, 6:07 PM
    Hi guys, anyone can help with logging issue in GC functions?
  • p

    panzupa

    01/10/2018, 6:07 PM
    https://www.graph.cool/forum/t/function-logging-problem/2033
  • t

    TangoJuliett

    01/10/2018, 6:10 PM
    Can someone direct me to the code that generates the filter inputs for the schema?
    g
    • 2
    • 6
  • s

    Salar

    01/10/2018, 6:23 PM
    hey guys i was learning graphql from howtographql website and i was in nodejs serverside and from mongodb connection i had a nice progress but now i can’t find that article!!!
  • s

    Salar

    01/10/2018, 6:24 PM
    looks like site changed.
  • b

    bionicle

    01/10/2018, 6:26 PM
    hi, anyone have experience wiring graphql to apache tinkerpop with gremlin?
  • b

    bionicle

    01/10/2018, 6:27 PM
    graphql + graphdb = win --- I want to use this for open source medical tech
    t
    f
    a
    • 4
    • 5
  • m

    matty

    01/10/2018, 8:16 PM
    When GC 1.0 is released, how long until GC functions from 0.x are decommissioned?
1...498499500...637Latest