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

    Wbert

    12/05/2017, 10:26 AM
    how can I run the server with my changes?? btw I am using a local instance with docker
  • j

    jure

    12/05/2017, 12:26 PM
    has anyone given any thought to schema/model modularity for apps based on graphcool? e.g. we’re working on a framework where the central concept is composition of components. we’re now thinking about making our models composable as well (one app uses all first party models, another uses a custom model, another all custom ones, etc)
  • w

    Wbert

    12/05/2017, 12:44 PM
    @jure That is one of the goals for graphql, hide to the frontend the backend complexity behind the graphql queries. You can create your schema with different datasources. In that case the complexity must be managed by your resolvers.
  • c

    cameronrll

    12/05/2017, 12:47 PM
    anyone else having issues with subscriptions? happens for new models and any new fields added to existing models
  • n

    nandito

    12/05/2017, 1:02 PM
    I'm getting the
    POST <https://api.graph.cool/system> 504 (Gateway Time-out)
    when I open the functions page.
  • n

    nandito

    12/05/2017, 1:16 PM
    I see in the comments above that there was an outage around that page earlier today but 1 hour ago I successfully created a function there, so I'm not sure if this is the same issue or a new one.
  • n

    nandito

    12/05/2017, 1:16 PM
    the https://status.graph.cool/ says everything is fine 😞
  • j

    joar

    12/05/2017, 2:40 PM
    Any news on the logs / functions issue?
    n
    • 2
    • 1
  • n

    nandito

    12/05/2017, 2:49 PM
    for me it works now 🎉
  • m

    mimica

    12/05/2017, 2:49 PM
    @nilan graphcool deploy return 504 error. failure to establish connectionw with cloudfront
    n
    • 2
    • 3
  • j

    jchiatt

    12/05/2017, 2:51 PM
    Hey everyone 👋 Just got handed a RN project that’s using Graphcool. The previous dev gave me a walkthrough of the service last night and I gotta say: it’s super impressive! Bravo!
    💚 3
    🦜 4
    n
    • 2
    • 1
  • j

    jchiatt

    12/05/2017, 2:51 PM
    I’m really excited to learn more about it as I work on this project.
    👍 2
  • b

    Butch

    12/05/2017, 2:55 PM
    How can I invalidate a node token I created for an auth0 user? aka logout
  • l

    lkbr

    12/05/2017, 3:38 PM
    Hello. I realise function logs are down. But does anyone know if actual functions are affected by this?
    m
    j
    • 3
    • 3
  • i

    imranansari

    12/05/2017, 4:30 PM
    @AnthonyBaker
  • j

    Jan Vogt

    12/05/2017, 5:31 PM
    Hello I am confused by the notion of system types: I understand, that the User type is a system type in legacy projects for the integrations to work (https://www.graph.cool/docs/reference/database/data-modelling-eiroozae8u#system-artifacts-(only-for-legacy-console-projects). But when I try to rename the user type after upgrading the project to a graphcool service it still won’t let me do it: “You tried renaming a system model. This is not possible. modelName: User”. Did I miss sth. or are system types not only relevant in legacy projects?
    m
    • 2
    • 4
  • j

    joe

    12/05/2017, 6:09 PM
    Is there a way specify types that are not graphcool models?
  • j

    joe

    12/05/2017, 6:09 PM
    basically they are fields that would be stored as nested JSON in the underlying db
    m
    • 2
    • 1
  • r

    rein

    12/05/2017, 7:04 PM
    any comment on when the functions logs will be up again for EU west?
    a
    • 2
    • 1
  • n

    nilan

    12/05/2017, 8:00 PM
    Function logs are functional again.
    🦜 9
  • j

    joar

    12/05/2017, 8:52 PM
    Big thanks @nilan
  • m

    mo

    12/05/2017, 8:54 PM
    Shit! So many new things coming in JS these days: https://twitter.com/nestframework/status/938016707095953409
  • d

    Dninja

    12/06/2017, 2:58 AM
    so you have a type of data and it's let's say structured like this : Response: { Data: { uniqueParent: { id: uniqueChild but the parent has no label, is there a way to pull them without looping through the dataset in-order to distribute a list therefore they wouldn't have a variable like query(name: x) { fields }
  • d

    Dninja

    12/06/2017, 2:59 AM
    would I use a directive?
  • m

    matar15

    12/06/2017, 9:43 AM
    Hi. all. I am trying to do subscription on relay modern. I followed this link. https://www.graph.cool/forum/t/relay-modern-subscriptions/420/5 but relay complains with
    Your schema defines a mutation field Person that takes ana argument named filter. But mutaiton fields must have exactly one argument named input
  • m

    matar15

    12/06/2017, 9:44 AM
    is there any working example on graphcool with relay subscription
  • j

    jure

    12/06/2017, 12:49 PM
    is something like this supposed to work (extending a type in types.graphql):
    Copy code
    # model-user (coming from a file somewhere)
    
    type User @model {
      id: ID! @isUnique
      email: String!
    }
    
    # model-paper (coming from another file somehwere)
    
    extend type User {
      papers: [Paper!]! @relation(name: "UserPapers")
    }
    
    type Paper @model {
      id: ID! @isUnique
      title: String!
      author: User! @relation(name: "UserPapers")
    }
  • s

    Steven Sacks

    12/06/2017, 1:34 PM
    How do I put an Authorization Bearer token into graphcool playground? I ran
    graphcool root-token dev
    . Put my token into the header but it didn't work.
  • s

    Steven Sacks

    12/06/2017, 1:35 PM
  • s

    Steven Sacks

    12/06/2017, 1:36 PM
    Nevermind it worked when I made it lowercase authorization
    👍 1
    n
    • 2
    • 3
1...458459460...637Latest