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

    ersherr

    12/01/2017, 4:40 PM
    wow, exciting!
  • s

    shrek

    12/01/2017, 4:40 PM
    Sweet!
  • d

    Dukuo

    12/01/2017, 4:44 PM
    but.. will it blend ? (jk, awesome!)
    😂 1
  • s

    steveb

    12/01/2017, 4:50 PM
    any docs on how to use multiple type definitions?
    n
    d
    • 3
    • 3
  • m

    michaelchiche

    12/01/2017, 4:52 PM
    running
    graphcool playground
    does not work anymore for me since the upgrade
    n
    s
    d
    • 4
    • 17
  • m

    michaelchiche

    12/01/2017, 4:53 PM
    😞
  • u

    user

    12/01/2017, 4:55 PM
    @michaelchiche commented on @michaelchiche’s file

    https://prisma.slack.com/files/U5A3JBD6W/F88BPATDZ/screen_shot_2017-12-01_at_17.54.19.png▾

    : you can see it here:

    https://graphcool.slack.com/files/U5A3JBD6W/F88BPATDZ/screen_shot_2017-12-01_at_17.54.19.png▾

  • b

    bdougie

    12/01/2017, 8:04 PM
    Hi late to the party, but looking to move to the graphcool framework with my existing graphcool application. Are there any good resources showing how that works. maybe something like
    graphcool init --platform existing.graph.cool/122343
    ?
  • b

    bdougie

    12/01/2017, 8:16 PM
    found it
  • b

    bdougie

    12/01/2017, 8:17 PM
    looks like I need to upgrade my project
  • b

    bdougie

    12/01/2017, 8:17 PM
    https://blog.graph.cool/graphcool-framework-preview-ff42081b1333
  • m

    mplis

    12/01/2017, 8:30 PM
    Is it possible to use an existing type as the return type of a custom resolver?
    • 1
    • 2
  • t

    TommyFortune

    12/01/2017, 8:32 PM
    My Engineering team is recommending graph.cool. Is it possible to host the service layer/cluster in our AWS cloud yet?
    d
    n
    • 3
    • 6
  • s

    sebastien

    12/01/2017, 8:59 PM
    Not sure how I broke the graphcool CLI, but now if I try running any command I get the following error:
    Copy code
    Desktop graphcool -v
     ▸    Cannot read property 'targets' of undefined
    
    Get in touch if you need help: <https://www.graph.cool/forum>
    To get more detailed output, run $ export DEBUG="*"
    I tried re-installing and updating to the latest version, but I’m still facing the same issue.
    n
    • 2
    • 2
  • p

    pcgilday

    12/01/2017, 9:39 PM
    When using graph.cool with the auth0 integration, is there a way to create an unauthenticated user (createUser mutation without authProvider)? In our scenario it is possible for the user to perform some actions that create data we would like to store before creating credentials (as an anonymous user with just an ID), then update the user info with the auth0 info after they sign in so that they can access from other devices later.
    l
    • 2
    • 1
  • s

    sunil

    12/01/2017, 10:26 PM
    Is there a way to subscribe to a meta query? say I need subscribers to be notified when the total count of a model changes?
  • b

    Bilal K

    12/01/2017, 11:03 PM
    Can anyone tell me the best way to import json data into graphcool? It's just a flat list of objects. No relations.
  • g

    Graham Ballantyne

    12/01/2017, 11:10 PM
    Did you not see the response when you asked the same question earlier? https://graphcool.slack.com/archives/C0MQJ62NL/p1512125784000214?thread_ts=1512118799.000143&amp;cid=C0MQJ62NL
  • d

    doug_w

    12/01/2017, 11:13 PM
    Anyone still using the legacy console and alogolia? Wondering A) how to create an index that uses a filter B) How do you then call
    'react-instantsearch/dom'
    to use that filter?
  • o

    orr

    12/02/2017, 12:21 AM
    Does anyone know the required return type of a subscription handler function? I don't see this documented anywhere and returning a promise as shown in the example does not seem to work.
  • s

    stton

    12/02/2017, 2:04 AM
    Running into a weird issue with a subscription function. Firing when adding through console but not via a post request but data is showing and saving
  • s

    stton

    12/02/2017, 2:07 AM
    server side subscription
  • c

    cloudpilot

    12/02/2017, 6:07 AM
    looking for a working e-mail/password auth example
  • v

    Vinnie

    12/02/2017, 9:49 AM
    Hi all — not strictly a graphcool question, but has anyone tried to add graphql-playground to their own node-based graphql server?
    a
    • 2
    • 74
  • r

    rein

    12/02/2017, 1:37 PM
    is there a way to make it easier when you are working with a bi-directional relationship? I have friendships for example and every time I want to query for them, I need to query for both sentFriendships and receivedFriendships on the user. I know I could make two rows for every friendship, but not sure if thats the best way to go about it. That being said, Im no expert on data modelling.
  • p

    puffancs

    12/02/2017, 1:41 PM
    I would like to test my understanding: If I use the default e-mail template then I have 3 resolvers (signup, authenticat, loggedInUser) then when I write my mutations I have to use these names and paramters to get it to work. What I mean by that in apolllo-angular terms
    Copy code
    export const CREATE_USER_MUTATION = gpl`
      mutation CreateUserMutation($email: String!, $password: String!, $name: String!) {
        signupUser(
          email: $email,
          password: $password
          name: $name,
        ) {
          id
        }
    
        authenticateUser(
          email: $email,
          password: $password
        ) {
         id
         token
        }
      }
    `;
    (I was following the howtographql tutorial with angular but it did not work, now it does and I would like to confirm that my understanding is correct)
  • r

    Rory Kelly

    12/02/2017, 2:13 PM
    Hi all can anyone point me towards some resources for unit testing resolver functions? My current approach is to include jest and mock function events. Is there a better way?
  • a

    Allen Elks

    12/02/2017, 3:06 PM
    Can anyone explain to me why I don't see 'Integrations' in the console for my service? I've the scanned the docs with no luck.
    t
    • 2
    • 3
  • s

    Sandeep

    12/02/2017, 3:46 PM
    Can Graph.Cool framework be deployed to Google Cloud ?
    h
    • 2
    • 2
  • t

    timwis

    12/02/2017, 5:19 PM
    Hey folks, any chance of hearing back from someone on the Graphcool team about this security question? https://www.graph.cool/forum/t/where-to-store-auth-tokens/1148/4?u=timwis
1...454455456...637Latest