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

    NV

    10/16/2017, 4:06 AM
    Hi.. I am facing issue in inline webhook. Where i have put down all headers value i.e. content-type, authorization etc, when i hit Test RUN it shows Authorization error but i have already authorization value in header. I tried from rest client with same values in header it is working expected. Could someone help here?
    n
    • 2
    • 3
  • c

    Cooper

    10/16/2017, 4:26 AM
    Hey @everybody, I'm having some issues with GQL and Apollo for iOS. When my project builds API.swift seem to always be throwing an error for being unable to convert [GraphQLSelection] to the expected 'GraphQLSelectionSet.type'. Any help would be awesome!
    n
    • 2
    • 1
  • o

    oxyoxy88

    10/16/2017, 4:40 AM
    I can't enabled the permission
  • o

    oxyoxy88

    10/16/2017, 4:40 AM
    *enable
  • o

    oxyoxy88

    10/16/2017, 4:41 AM
    wow It works now
  • g

    gunnar.holwerda

    10/16/2017, 4:42 AM
    @oxyoxy88 Yeah that thing is buggy, sometimes flipping between "See affected fields" and back to defining the permissions will trigger it to update properly
  • a

    antho1404

    10/16/2017, 6:32 AM
    I have an issue with the new CLI with local development and serverless functions deployment, if any of you have an idea https://www.graph.cool/forum/t/feedback-framework-preview/949/79?u=antho1404
  • c

    cameronrll

    10/16/2017, 8:06 AM
    Hi guys, not sure if I'm having abit of a bug here, but when I do a subscription in the playground (and on my app) the subscription never hears the delete event, but only for one of my schemas? If i change the subscription (keeping the rest exactly the same) to listen for another schema it works fine
    n
    • 2
    • 1
  • c

    cameronrll

    10/16/2017, 8:09 AM
    example of my schema (all names changed)
    Copy code
    type MyModel @model {
      field1: String
      field2: String @isUnique
      field3: DateTime!
      field4: String
      field5: Boolean @defaultValue(value: false)
      field6: DateTime!
      field7: [String!]
      field8: Boolean @defaultValue(value: false)
      id: ID! @isUnique
      field9: Boolean! @defaultValue(value: false)
      field10: String
      field11: Month!
      field12: String
      field13: Int!
      field14: String!
      field15: String
      field16: String!
      field17: String!
      field18: Int!
      field19: Int
      field20: Int
      field21: Int
      field22: Season!
      field23: String!
      field24: String
      field25: DateTime
      field26: String
      field27: Int
      field28: String
      field29: String
      field30: String
      field31: DateTime!
      field32: Type
      field33: DateTime!
      field34: Period!
    }
  • s

    sdubois

    10/16/2017, 8:28 AM
    Good "morning" everyone, how to combine Gatsby + Graphcool auth + Netlify to have static private pages? @schickling you mentioned this should be possible and I'd just love to have any hints to get started. Any answer could come in this forum thread which got buried during the weekend: https://www.graph.cool/forum/t/gatsby-graphcool-access-control-netlify/1254/3
  • n

    nilan

    10/16/2017, 8:33 AM
    4,999 members ๐Ÿ˜ฎ
    ๐Ÿ‘ 2
    graphcool 1
    ๐Ÿฆœ 3
  • c

    cameronrll

    10/16/2017, 8:58 AM
    I have submitted a new issue on github, if anyone could help out that would be great ๐Ÿ™‚ https://github.com/graphcool/graphcool/issues/838
    n
    • 2
    • 1
  • n

    nilan

    10/16/2017, 8:58 AM
    welcome @aksonov, you're the 5000th member of this Slack ๐ŸŽ‰ ๐Ÿ˜„
    ๐Ÿฆœ 2
  • a

    aksonov

    10/16/2017, 8:59 AM
    @nilan Wow ๐Ÿ™‚
    ๐Ÿ˜‚ 1
  • a

    aksonov

    10/16/2017, 8:59 AM
    Hi, I'm trying to run graphql examples from from https://github.com/graphcool-examples/react-native-graphql
  • a

    aksonov

    10/16/2017, 8:59 AM
    Running graphcool init --schema https://graphqlbin.com/chat.graphql
  • a

    aksonov

    10/16/2017, 9:00 AM
    The schema is invalid: The model
    Person
    is missing the @model directive. Please add it.
  • a

    aksonov

    10/16/2017, 9:00 AM
    https://github.com/graphcool-examples/react-native-graphql/tree/master/subscriptions-with-expo-and-apollo-chat
    n
    • 2
    • 8
  • s

    SallyP

    10/16/2017, 10:12 AM
    how to deploy to Herok?u
  • s

    SallyP

    10/16/2017, 10:12 AM
    can you add Graph.cool as a Heroku add-on?
    n
    • 2
    • 1
  • a

    ahad

    10/16/2017, 10:33 AM
    Hi everyone
  • a

    ahad

    10/16/2017, 10:33 AM
    I have this issue.
  • a

    ahad

    10/16/2017, 10:33 AM
    Unable to import module 'modules\\auth0\\src\\authenticate-lambda': Error\n at Function.Module._resolveFilename (module.js46915)\n
  • a

    ahad

    10/16/2017, 10:33 AM
    I saw that others had a similar issue, but not sure how to solve it.
  • k

    kaaerreeene

    10/16/2017, 11:01 AM
    is there any way to implement default tabs in graphql playground with express? (we are currently using express and graphi but we think it's better graphql playground)
    n
    • 2
    • 1
  • m

    Miezan

    10/16/2017, 12:08 PM
    Iโ€™m trying to run this example from the doc in the playground https://docs-next.graph.cool/reference/graphql-api/mutation-api-ol0yuoz6go#nested-mutations
    Copy code
    mutation createAuthorAndContactDetails($contactDetails: AuthorcontactDetailsContactDetails) {
      createAuthor(
        description: "I am a good author!"
        contactDetails: $contactDetails
      ) {
        id
        contactDetails {
          id
        }
      }
    }
    what are some example of value for the variable
    AuthorcontactDetailsContactDetails
    w
    • 2
    • 2
  • e

    eliezedeck

    10/16/2017, 1:09 PM
    Hey @nilan... not sure why this is happening. I'm trying to edit the Schema which uses an ENUM. The enums are correctly set, but I can't select the values for the field. Yet, is worked the first time. May be I'm doing something wrong... don't know. (If I need to report a bug, please let me know the link. Thanks)
    Trying_to_set_ENUM_value_for_a_field_in_the_Console_page.txt
  • j

    jferrettiboke

    10/16/2017, 2:02 PM
    Wow! We are now 5.000+ people on this workspace! ๐ŸŽ‰๐ŸŽŠ See the exact number of people on https://slack.graph.cool.
    parrotwave5 4
    parrotwave2 4
    ๐Ÿฆ€ 1
    parrotwave1 5
    parrotwave6 4
    parrotwave3 4
    ๐Ÿ’ช๐Ÿป 2
    graphcool 4
    ๐Ÿฆœ 9
    parrotwave4 4
    parrotwave7 4
    a
    • 2
    • 1
  • m

    mwickett

    10/16/2017, 2:28 PM
    Just a heads up that Iโ€™m seeing an issue deploying changes to an existing function (in this case, a resolver) - https://www.graph.cool/forum/t/deploy-does-not-update-changed-functions/1285
  • a

    amann

    10/16/2017, 2:38 PM
    Iโ€™m using the new local docker workflow, but am trying to connect from my graphcool docker container to a webserver on my host machine through
    localhost
    (that I am using for webhooks), does anyone know what the configuration would look like to do this?
    d
    • 2
    • 6
1...374375376...637Latest