https://www.prisma.io/ logo
Join SlackCommunities
Powered by
# random
  • a

    agartha

    12/09/2017, 5:09 PM
    Message is contained in a channel, replies to a message (should) live in a thread. Button also says 'start a thread' when you reply to a message.
    d
    • 2
    • 2
  • m

    mikedklein

    12/12/2017, 3:28 AM
    Anyone know if there is a way to specify the ID of file for relationship instead of the object:
    Copy code
    mutation CraeteFarmAndAddress(
      $name: String!, 
      $farmers: String!, 
      $partnerSince: Int!, 
      $founded: Int!, 
      $laborSource: String!, 
      $safetyCertifications: String!, 
      $otherCertifications: String!, 
      $size: String!, 
      $sustainabilityPractices: String!, 
      $url: String!, 
      $addressData: FarmaddressAddress, 
      $farmLogo: FarmfarmLogoFile!,  // I would rather this by ID!
      $files: [FarmfilesFile!] // I would rather this be [ID!]
    ) {
      createFarm(name: $name, farmers: $farmers, partnerSince: $partnerSince, founded: $founded, laborSource: $laborSource, safetyCertifications: $safetyCertifications, otherCertifications: $otherCertifications, size: $size, sustainabilityPractices: $sustainabilityPractices, url: $url, address: $addressData, farmLogo: $farmLogo, files: $files) {
        id
        address {
          id
          __typename
        }
        __typename
      }
    }
  • m

    mikedklein

    12/12/2017, 3:38 AM
    RTFM 👊 Just needed to change to the provided relation ids field i.e. farmLogoId, filesIds
    🕵🏻 1
  • j

    jovantoskic

    12/12/2017, 12:40 PM
    Anyone knows how to solve the next error, “typeDefs must be a string or array, got an object” ?
  • j

    johhansantana

    12/13/2017, 12:35 AM
    http://stateofjs.com/
    👍 1
    😎 2
  • r

    RollyMaduk

    12/13/2017, 12:03 PM
    Hello guys, does anyone know any tooling for debuging subscription functions., I would like to know whats happening on my functions, by console.log
    i
    e
    m
    • 4
    • 6
  • m

    mo

    12/13/2017, 1:15 PM
    https://twitter.com/morajabi/status/940930538520629248
  • m

    mo

    12/13/2017, 1:16 PM
    https://t.co/NdfzMBlBa0
  • d

    Dninja

    12/14/2017, 3:55 PM
    Anyone familiar with HMAC Auth?
    s
    • 2
    • 1
  • m

    max

    12/19/2017, 2:40 PM
    anyone use Google Cloud Functions with Graphcool?
  • m

    miho

    12/19/2017, 2:59 PM
    re re
    process.argv
    or how to get extension name in function ? or filename ?
    j
    • 2
    • 3
  • a

    Aryeh

    12/20/2017, 6:09 PM
    Hello all, Any suggestions / best practices for item deletion mutations? The simplest way is probably to just create separate mutations for creating, deleting, etc. I would like to keep everything (if it’s feasible) in the one update mutation that I have that sends the input to the backend which updates the columns of the particular row in the database. The issue I’m running into is how do I tell the backend to delete the item from this update mutation. I’m using Elm on the front-end which doesn’t differentiate between
    null
    and
    undefined
    so I can’t just set the property of the item I want to delete to say
    null
    . What do you guys thing about passing an array of items to delete along with whatever input to update in the mutation? Thank you for any advice!
    m
    • 2
    • 1
  • k

    kdichev

    12/26/2017, 12:35 PM
    yo friends, I have a project currently developing on graphcool/0.11.2 would like to get to 1.0 but I have 1 question do I need to write all the resolvers manually?
    👍 1
  • k

    kdichev

    12/26/2017, 1:25 PM
    https://github.com/graphcool/framework/issues/1453 guys any idea what I am forgetting to do?
  • m

    Michael Hsu

    12/28/2017, 3:42 AM
    Here is my practice of fullstack todoMVC with `graphql-yoga`: https://github.com/evenchange4/todomvc-subscriptions Any feedbacks are welcome~
  • d

    DanielHuisman

    12/29/2017, 12:29 AM
    Hey, I just have a quick question: is there any timeline on interface support on Graphcool? Sorry, if this isn't the right channel.
  • r

    Reborn

    12/29/2017, 3:13 PM
    Greetings everyone! Is there any chance to setup graphcool to use mssql database?
  • h

    harmony

    01/04/2018, 12:47 AM
    https://meltdownattack.com/
  • h

    harmony

    01/04/2018, 12:47 AM
    😓
    🤕 1
  • j

    juicycleff

    01/04/2018, 2:18 PM
    Is support for caching with redis or something like redis in works
  • j

    juicycleff

    01/04/2018, 2:18 PM
    Or roadmap
    a
    • 2
    • 1
  • e

    ericsonluciano

    01/05/2018, 5:01 AM
    hi it is possible to clone the project in graphcool cli? or it's need to download from console?
  • t

    thangngoc89

    01/05/2018, 3:45 PM
    @ericsonluciano it's here https://github.com/graphql-boilerplates/node-graphql-server
    👍 1
    e
    • 2
    • 1
  • h

    huv1k

    01/07/2018, 12:21 PM
    https://hackernoon.com/im-harvesting-credit-card-numbers-and-passwords-from-your-site-here-s-how-9a8cb347c5b5
    👏 5
    🤑 3
    j
    • 2
    • 1
  • m

    Martin Peck

    01/08/2018, 9:48 AM
    it's a good (and worrying) post
  • p

    pnicolaou

    01/10/2018, 9:54 PM
    hey this is not a graphcool question, but i was wondering if anyone knew the answer to this. If i have a component like
    Copy code
    const MyComponent = () => <div>hi</div>
    Is it possible to call that component as a function inside another component. Like so
    Copy code
    const SecondComponent = () => {
      myFunction = () => {
        MyComponent()
      }
    
      return <div>hi</div>
    
    }
  • p

    pnicolaou

    01/10/2018, 9:54 PM
    Im trying to create a warning modal
  • l

    lawjolla

    01/10/2018, 9:55 PM
    <MyComponent />
    calls it in JSX
    👍 1
  • p

    pnicolaou

    01/10/2018, 9:55 PM
    @lawjollawhat do u mean?
  • l

    lawjolla

    01/10/2018, 9:56 PM
    You're using React, right?
1...121314...53Latest