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

    nilan

    02/24/2017, 11:28 AM
    thank you so much @alarv!
  • a

    artyom

    02/24/2017, 5:09 PM
    πŸ‘‹ @ric0 @ml_pursuance
  • r

    ric0

    02/24/2017, 5:17 PM
    πŸ‘‹
  • m

    martin

    02/24/2017, 7:18 PM
    Does anyone know how to update the system field
    email
    in the
    User
    Model? Is that even possible?
    n
    • 2
    • 4
  • t

    tim2

    02/24/2017, 10:25 PM
    Welcome @charles ! Was a great talk yesterday about FP!
  • w

    wallslide

    02/25/2017, 2:25 AM
    Testing out algolia search integration. I setup the integration, and added an index in graphcool. A few minutes later and still no update on the algolia side of things. There's only one node in my data so I wouldn't expect index creation to take much time at all.
    n
    • 2
    • 2
  • n

    nilan

    02/25/2017, 9:50 AM
    welcome @nataren and @cospin18 πŸ‘‹
    ❀️ 1
  • a

    artyom

    02/25/2017, 1:06 PM
    @fdaciuk πŸ™Œ πŸ‘‹
    βœ… 1
    🦜 2
  • c

    charles

    02/25/2017, 11:38 PM
    hey @tim2 Thank you! I had a great time. Excited to get more involved with graphql πŸ˜‰
    πŸš€ 1
  • a

    artyom

    02/26/2017, 11:43 AM
    hello, @zimme @aach @robdonn @vetekrans @brwnrclse @parkerhiggins ! welcome to our slack! graphcool πŸš€
  • z

    zimme

    02/26/2017, 11:44 AM
    @artyom, Thanks 🦜
    πŸ‘ 1
  • a

    artyom

    02/26/2017, 11:44 AM
    let us know if any questions/comments come up
    πŸ‘ 1
  • v

    vetekrans

    02/26/2017, 11:58 AM
    @artyom thx parrotwave3
  • r

    robdonn

    02/26/2017, 12:16 PM
    @artyom Thanks! Loving the product!
    ❀️ 3
    n
    a
    • 3
    • 12
  • a

    artyom

    02/26/2017, 5:09 PM
    @daver182 @rubenabix πŸ‘‹ πŸ‘‹ welcome to Graphcool!
  • r

    rubenabix

    02/26/2017, 5:09 PM
    Thanks
  • a

    artyom

    02/26/2017, 10:50 PM
    Hi @chandu0101 and @galtenberg πŸ™Œ
    🍻 1
  • c

    chandu0101

    02/26/2017, 11:19 PM
    Hey hi @artyom , nested mutations are great thanks πŸ™‚
    a
    • 2
    • 2
  • m

    marciobueno1

    02/27/2017, 4:59 AM
    Is there a way to get all the enum possible values (as an array of strings, for example)? So, I can use it on a Dropdown component. I am refering to an enum I created inside a Model on the console.graph.cool
  • f

    falconerd

    02/27/2017, 5:12 AM
    @artyom thanks for welcoming me several days ago. Graphcool is definitely the best graphql back-end service i've tried
    graphcool 1
    ❀️ 1
    πŸŽ‰ 2
    a
    • 2
    • 10
  • n

    nilan

    02/27/2017, 7:27 AM
    he @marciobueno1 have a look here https://www.graph.cool/docs/faq/graphql-introspection-queries-shoe5xailo
    πŸ‘ 1
  • r

    ric0

    02/27/2017, 11:30 AM
    I have a question: Using Apollo Server I'm able to insert a value in the db and then 'override' it in the type resolvers like in the following code. Basically here I store an Int value in the db that is actually a String in the schema
    Copy code
    type Example {
      _id: String!
      description: String
      length: String
    }
    
    type Query {
     listExamples: [Example]
    }
    
    type Mutation {
      insertExample(description: String): Example
    }
    
    schema {
      query: Query
      mutation: Mutation
    }
    
    //In my resolvers
    Mutation: {
      insertExample(_, {description}): {
        const exampleId = Examples.insert({
          description: description,
          length: description.length
        })
        return Examples.findOne(exampleId)
      }
    },
    Query; {
     listExample(_){
       Examples.find({}).fetch()
     }
    },
    Example({length}) {
      const info = length > 25 ? 'LONG' : 'SHORT'
      return info
    }
    Is this possible in graphcool?
    n
    • 2
    • 6
  • y

    yorunohikage

    02/27/2017, 1:11 PM
    Hey guys, is there an admin token feature planned for server side calls ?
    n
    • 2
    • 20
  • g

    gopidon

    02/27/2017, 4:52 PM
    Why can't I edit the data in system generated field like createdAt?
    n
    • 2
    • 1
  • a

    artyom

    02/27/2017, 7:37 PM
    πŸ‘‹ @mwickett @jibanez @romanhotsiy @keir welcome to our slack!
  • e

    ejoebstl

    02/27/2017, 9:36 PM
    <!channel> I've posted a feature request regarding a simple expression language for filtering in GraphQL's Github repository. That's a feature I really miss in the language and I would be super happy if you all could contribute bringing this to life: https://github.com/facebook/graphql/issues/271
    πŸ‘ 2
  • f

    falconerd

    02/27/2017, 9:38 PM
    +1'd but I can't provide any useful comments on the subject
    ❀️ 1
  • e

    eliecerthoms

    02/28/2017, 1:07 AM
    how have you guys managed to do any authentication on relay that does not use JWTs?
    n
    • 2
    • 1
  • m

    meglio

    02/28/2017, 5:13 AM
    Thanks for inviting me to this chat.
  • m

    meglio

    02/28/2017, 5:15 AM
    Have never worked with GraphQL. In terms of using your service (with no direct access to making SQL queries), how do I make complex queries with data aggregation, filtering and windowing? Is is possible?
    n
    • 2
    • 1
1...111112113...637Latest