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

    discere

    10/03/2017, 6:13 PM
    I think I'm going to be excited, when I work out what I'm doing...
    n
    • 2
    • 3
  • c

    chen_alon

    10/03/2017, 6:18 PM
    @nilan, you guys rock!! ๐Ÿ˜Ž Well done! ๐Ÿ‘ ๐Ÿ‘ ๐Ÿ‘
    ๐Ÿ’š 1
    ๐ŸŽ‰ 1
    n
    • 2
    • 1
  • j

    jschloer

    10/03/2017, 6:19 PM
    Are there any examples of using the graphcool CRUD api inside of a new shortcut function? Curious to see what that looks like.
    n
    • 2
    • 5
  • e

    eruby

    10/03/2017, 6:20 PM
    oops lol. meant to send that to a single user^^^
  • g

    giedriusr

    10/03/2017, 6:20 PM
    bravo
  • p

    Pkmmte

    10/03/2017, 6:21 PM
    I'm more excited about Graphcool resolvers than I am about Firebase launching Cloud Firestore today! Great job guys!
    ๐Ÿ’š 2
    n
    a
    • 3
    • 2
  • e

    eruby

    10/03/2017, 6:21 PM
    @nilan Job well done on the release!
    ๐Ÿ’š 1
  • r

    roms

    10/03/2017, 6:22 PM
    โœŒ๏ธ
  • t

    timbuckley

    10/03/2017, 6:27 PM
    Question: I'm sure this has been discussed before, but how difficult is it to enter data according to fields like this...
    Copy code
    type Foo extends Node {
      fooName: String!
      fooEmail: String!
      barId: ID!
      barName: String!
      barEmail: String!
    }
    ...And then reshape the schema according to this (better more idiomatic version)?
    Copy code
    type Foo extends Node {
      id: ID!
      name: String!
      email: String!
      bar: Bar!
    }
    type Bar extends Node {
      id: ID!
      name: String!
      email: String!
    }
  • t

    timbuckley

    10/03/2017, 6:30 PM
    Basically, it's easier for my team to enter data in the first format. We'd like to then change the schema to make it more idiomatic and concise as in the second format.
  • t

    timbuckley

    10/03/2017, 6:33 PM
    Is migrating the data to a new schema easy?
    n
    • 2
    • 2
  • n

    nilan

    10/03/2017, 6:36 PM
    by the way, help us spread the word on twitter, too ๐Ÿ˜Ž https://twitter.com/graphcool/status/915276143187591169
  • u

    ulrikstrid

    10/03/2017, 6:37 PM
    Can we get non-capitalized fields back when running queries? Having trouble with reasonml
  • a

    albinekb

    10/03/2017, 6:38 PM
    .toLowerCase? ๐Ÿ˜„
    ๐Ÿ˜„ 1
    ๐Ÿ˜‚ 2
  • u

    ulrikstrid

    10/03/2017, 6:40 PM
    I get { Place: ... } need it to be { place: ... } before it hits my frontend ๐Ÿ˜›
    n
    • 2
    • 2
  • s

    Slackbot

    10/03/2017, 6:56 PM
    This message was deleted.
    s
    l
    • 3
    • 3
  • c

    coolboyjules

    10/03/2017, 7:28 PM
    Ty @nilan
  • t

    tekk

    10/03/2017, 7:29 PM
    Hopefully this is a basic question and I'm just being thick. Trying to write a permission query that just makes it so a user can only update themselves:
    Copy code
    query ($user_id: ID!, $node_id: ID!) {
      SomeUserExists(filter:{
        id: $node_id
        id: $user_id
      })
    }
    That's obviously not a legal query, but I'm just try to say that the
    $node_id
    must be equal to the
    $user_id
    --am I on the right track?
    n
    • 2
    • 4
  • m

    max

    10/03/2017, 7:44 PM
    Hello everyone - could anyone point me to an example where someone automates the creation of node when another node is created? The idea would be to reference the created node. I imagine it would be possible to do this via a function/subscription
    a
    • 2
    • 3
  • e

    eruby

    10/03/2017, 8:00 PM
    Guys, there's only 101 stars on the graphcool/graphcool github. That's not right! Let's give the support it deserves โค๏ธ๐Ÿ™Œ๐Ÿ‘
    ๐Ÿ‘ 6
  • a

    albinekb

    10/03/2017, 8:53 PM
    https://github.com/graphcool/graphql-playground
  • a

    albinekb

    10/03/2017, 8:53 PM
    877!
    a
    • 2
    • 1
  • a

    albinekb

    10/03/2017, 8:53 PM
    starred
  • s

    SD

    10/03/2017, 8:59 PM
    Hello, I am trying to programmatically access my teams GQL endpoint, but we have auth enabled. Looking at the graphql-cli docs, I dont see a clear set of instructions to enable auth. The .graphqlconfig shows a slightly different format from whats on github. Any pointers?
  • j

    Josef Henryson

    10/03/2017, 9:18 PM
    Hello.. Iโ€™m about to setup permissions in my app and I have read a few posts on the topic, but I can only find info on how to write permission queries to define permissions on the server, I canโ€™t find any info on how to ask for permissions from the client. I guess I approach this the wrong way, I assume permissions on the server should just feed me the relevant data which should populate my UI etc, right? Does anyone have an example on how to handle this โ€œbest practiseโ€? This article did not give me the full pcture: https://www.graph.cool/docs/tutorials/authorization-content-management-system-miesho4goo/
    a
    • 2
    • 5
  • t

    tfiwm

    10/03/2017, 9:54 PM
    Is there a way to set a permission where only an admin is allowed to do something?
  • t

    tfiwm

    10/03/2017, 9:54 PM
    Admin from the playground e.g.
  • l

    lastmjs

    10/03/2017, 10:00 PM
    Should I be looking at https://github.com/graphcool/templates or https://github.com/graphcool/modules?
  • l

    lastmjs

    10/03/2017, 10:00 PM
    Is there a big difference between these two? Is one going to be obsoleted?
  • l

    lastmjs

    10/03/2017, 10:01 PM
    I'm looking into custom auth and I want to know what code I should be relying on as the most accurate and future-proof
    a
    n
    • 3
    • 3
1...358359360...637Latest