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

    Maslov

    10/20/2017, 5:35 PM
    oh, found the way - using
    first
    instead
    last
    solved the problems
    🦜 2
  • n

    Navid

    10/20/2017, 7:36 PM
    hello all i have a problem! when i write this command in terminal: graphcool init --schema https://graphqlbin.com/hn-starter.graphql --name Hackernews see this error: Whoops, something went wrong while creating the project. ✖️ Error: request to http://dynamodb.eu-west-1.amazonaws.com/ping?x=cj90a6riw0000bulxe47ylzeo failed, reason: connect ETIMEDOUT 52.94.24.28:80 * You can enable additional output by setting
    export DEBUG=graphcool
    and rerunning the command. * Open an issue on GitHub: https://github.com/graphcool/graphcool-cli. * Get in touch if you need help: http://slack.graph.cool/ someone can explain me about this?
    a
    • 2
    • 1
  • p

    Pkmmte

    10/20/2017, 10:12 PM
    I'm getting a 504 error when trying to delete 3,000+ items. Is this normal?
    Copy code
    <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<HTML><HEAD><META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=iso-8859-1\">\n<TITLE>ERROR: The request could not be satisfied</TITLE>\n</HEAD><BODY>\n<H1>ERROR</H1>\n<H2>The request could not be satisfied.</H2>\n<HR noshade size=\"1px\">\nCloudFront attempted to establish a connection with the origin, but either the attempt failed or the origin closed the connection.\n<BR clear=\"all\">\n<HR noshade size=\"1px\">\n<PRE>\nGenerated by cloudfront (CloudFront)\nRequest ID: iK0PeeqW7AT-S9pZZJqsAV6aYMob3X4bs2L2QdNzREE39sfAz1zcJg==\n</PRE>\n<ADDRESS>\n</ADDRESS>\n</BODY></HTML>
    This is done via a giant mutation with multiple tags.
    a
    • 2
    • 5
  • t

    tekk

    10/20/2017, 11:17 PM
    Hey people, I have a server side subscription that works great for a while, but eventually (hours, a day perhaps), will just stop executing. I'm using
    subscriptions-transport-ws
    and the documentation mentions a keep-alive. Does anyone know where graph cool utilizes a keep alive with it's subscription endpoints?
    n
    • 2
    • 3
  • s

    Slackbot

    10/21/2017, 12:21 AM
    This message was deleted.
    l
    n
    a
    • 4
    • 11
  • l

    lastmjs

    10/21/2017, 5:29 AM
    How do I get the uri for an ejected project to put into .graphcoolrc?
    • 1
    • 6
  • l

    lastmjs

    10/21/2017, 6:08 AM
    Logs on my functions are not behaving correctly after ejecting a project and then pushing up already existing functions with different implementations
    • 1
    • 3
  • l

    lastmjs

    10/21/2017, 6:15 AM
    Has graph.cool thought of creating a GitHub integration?
    • 1
    • 6
  • l

    lastmjs

    10/21/2017, 6:28 AM
    Also, many of my functions still say inline, when they should all say webhook
  • l

    lastmjs

    10/21/2017, 6:29 AM
    And for some reason I can still add functions through the web console
  • l

    lastmjs

    10/21/2017, 6:53 AM
    I commented out all of my functions in graphcool.yml, deployed, thus deleted all of the functions, uncommented them, and then deployed again. That seems to have fixed the issues. This should probably be worked out by graph.cool
    😖 1
    • 1
    • 3
  • l

    lastmjs

    10/21/2017, 7:00 AM
    Another question...how reliable are graph.cool's data backups? How easy will it be to retrieve data if necessary? I'm wondering if I should be looking into my own backups as well
  • s

    silver star

    10/21/2017, 7:14 AM
    Hello Everybody
  • s

    silver star

    10/21/2017, 7:14 AM
    I have question.
  • s

    silver star

    10/21/2017, 7:15 AM
    I got error when filter on AllList functions.
  • s

    silver star

    10/21/2017, 7:15 AM
    export default createFragmentContainer(WorkHourList, graphql` fragment WorkHourList_viewer on Viewer { allWorkHours(filter:{ project: { id : "cj903c2fo0men0104pzpepkhl" } },last:100, orderBy: createdAt_DESC) @connection(key: "WorkList_allWorkHours") { edges { node { ...WorkHour_workhour } } } } `)
  • s

    silver star

    10/21/2017, 7:15 AM
    this is working.... but if I change value is props.value , it's now working.
  • s

    silver star

    10/21/2017, 7:15 AM
    export default createFragmentContainer(WorkHourList, graphql` fragment WorkHourList_viewer on Viewer { allWorkHours(filter:{ project: { id : $proj_id } },last:100, orderBy: createdAt_DESC) @connection(key: "WorkList_allWorkHours") { edges { node { ...WorkHour_workhour } } } } `)
  • s

    silver star

    10/21/2017, 7:17 AM
    I got this error.
  • s

    silver star

    10/21/2017, 7:17 AM
    RelayCodeGenerator: Complex argument values (Lists or InputObjects with nested variables) are not supported, argument
    filter
    had value
    Copy code
    {
      "kind": "ObjectValue",
      "metadata": null,
      "fields": [
        {
          "kind": "ObjectFieldValue",
          "metadata": null,
          "name": "project",
          "value": {
            "kind": "ObjectValue",
            "metadata": null,
            "fields": [
              {
                "kind": "ObjectFieldValue",
                "metadata": null,
                "name": "id",
                "value": {
                  "kind": "Variable",
                  "metadata": null,
                  "variableName": "proj_id"
                }
              }
            ]
          }
        }
      ]
    }
    . Source: document undefined.
  • s

    silver star

    10/21/2017, 7:17 AM
    What is problem?
  • s

    silver star

    10/21/2017, 7:20 AM
    There is sample for filtering with react-apolo here.
  • s

    silver star

    10/21/2017, 7:20 AM
    https://www.howtographql.com/react-apollo/7-filtering-searching-the-list-of-links/
  • s

    silver star

    10/21/2017, 7:20 AM
    I was going to try it with react-relay.
  • s

    silver star

    10/21/2017, 7:20 AM
    This is schema..
  • s

    silver star

    10/21/2017, 7:20 AM
    type WorkHour @model { id: ID! @isUnique createdAt: DateTime! updatedAt: DateTime! amount: Int! description: String! project: Project @relation(name: "WorkHoursOnProject") }
  • l

    lastmjs

    10/21/2017, 7:39 AM
    Where is the best place to go for docs on the local graph.cool development environment (docker and such)? https://github.com/graphcool/graphcool/issues/714 ?
  • s

    silver star

    10/21/2017, 7:58 AM
    I got error like this url> https://www.graph.cool/forum/t/using-a-variable-in-relay-moderns-createpaginationcontainer-filter-option/1212/2
  • s

    silver star

    10/21/2017, 7:58 AM
    Please help me on this.
  • a

    Adam Gajzlerowicz

    10/21/2017, 10:10 AM
    Does all data in grapql need to be a List?
1...383384385...637Latest