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

    Maslov

    11/25/2017, 6:06 AM
    without functions
  • b

    borisgefter

    11/25/2017, 7:14 AM
    Hey guys, a quick question to consider. We are just drafting our privacy policy. Is there a way of encrypting the data we collect using our application on graph.cool?
  • e

    eliezedeck

    11/25/2017, 11:26 AM
    Hey guys, I really was looking forward for the $9 offer, which I don't think isn't coming back no more 😢. So, a question about the Docker version, is it something for production use-case or just something only designed for local development? Because looking at it, I noticed that the documentation doesn't clearly say that it's for production, it only says so for the Graphcool Cloud service (https://www.graph.cool/docs/reference/deployment/overview-ohs4asd0pe). More over, the
    graphcool local up
    seem to have no path to upgrading the stack, and what's really important: not clear where and how the encapsulated MySQL data is supposed to live. @nilan mind sheding some light on this?
  • a

    alexanbj

    11/25/2017, 11:49 AM
    Does anyone know how to work around this? https://github.com/graphcool/framework/issues/222
  • s

    Steven Sacks

    11/25/2017, 12:32 PM
    Sorry if this has been brought up before, but I'm wondering about your https://github.com/graphcool-examples/react-graphql/tree/master/quickstart-with-relay-modern project and why it is using React Router 4 when the Relay Modern instructions specifically say that you should not use RR4 and instead use Found? https://facebook.github.io/relay/docs/routing.html
    The component-based approach of React Router v4 does not readily allow for aggregating the data requirements for nested routes, and as such does not readily permit an approach that will avoid request waterfalls from nesting QueryRenderer components.
    i
    • 2
    • 10
  • i

    iamclaytonray

    11/25/2017, 1:44 PM
    Does anyone know how I would go about forcing 2+ operations on a single function?
  • a

    AsPrO

    11/25/2017, 2:23 PM
    Does someone have an idea about how to implement an "advanced" search returning a score (search on multiple terms) ? I feel it's not possible with graphcool? so how do you advice me to do ?
  • p

    paulquappe

    11/25/2017, 3:30 PM
    hi guys, i just looged in to inform you about my joy, without irony, to find the hoaxes in howtographql tutorials
    a
    • 2
    • 7
  • p

    paulquappe

    11/25/2017, 3:30 PM
    ā¤ļø
  • p

    picosam

    11/25/2017, 3:34 PM
    Hello folks! Anyone currently using any linter with the Graphcool CLI, to check permission queries for instance?
  • p

    picosam

    11/25/2017, 4:53 PM
    Hyphens aren’t allowed in project names anymore?
  • p

    proteus

    11/25/2017, 5:03 PM
    Is there a way to batch requests with
    graphcool-lib
    ?
  • q

    qsys

    11/25/2017, 6:45 PM
    I'm trying resolver functions and when I test them, I get an empty return value:
    Copy code
    type Roles {
      id: String!
      roles: [String]
    }
    
    extend type Query {
      roles(id: String): Roles
    }
    inline code:
    Copy code
    module.exports = function(event) {
      const id = event.data.id
    
      const roles = ["somerole"]
    
      return {
        data: {
          id: id,
          roles: roles}}
    }
  • q

    qsys

    11/25/2017, 6:46 PM
  • q

    qsys

    11/25/2017, 6:46 PM
    no event, no return value, no error (and it seems to take pretty long to run such a simple function)
  • q

    qsys

    11/25/2017, 6:47 PM
    What am I doing wrong?
  • q

    qsys

    11/25/2017, 6:51 PM
    oh, got, works in the playground... should be ok.
  • p

    Pedro Jardim

    11/25/2017, 9:16 PM
    I was reading a xlsx file using xlsx lib (const XLSX = require('xlsx'), 2 weeks ago it was working fine, but now when I run my Resolver it stays 'runing' forever, it does not give me any errors or message. I know it is because of this lib because when I remove it and all its uses, I runs ok. Any ideas or a new lib to read a xlsx file from a request?
  • m

    mj

    11/26/2017, 12:06 AM
    Gd’ay I’ve got graphcool framework running and using
    Copy code
    graphcool local up
    how can I find the available graphql endpoint? I’ve tried localhost:60000/graphql and :60050/graphql
    k
    a
    i
    • 4
    • 8
  • e

    ersherr

    11/26/2017, 12:38 AM
    hey! has anyone tried connecting to the mysql container with a native osx client like datagrip or sequel pro?
  • e

    ersherr

    11/26/2017, 12:39 AM
    just trying to figure out the port situation. when i forward container 3306 to host 3306 i can connect from my host mac, but it breaks graphcool and i have to destroy the cluster
    a
    • 2
    • 15
  • t

    theory

    11/26/2017, 1:25 AM
    Hello World.
  • t

    theory

    11/26/2017, 1:26 AM
    I'm using the graphcool deploy and it asks for a project name. Where does one look to see the already established projects? I'd like to delete previous ones. I've only used the local docker install
    a
    • 2
    • 10
  • c

    ckelley

    11/26/2017, 1:44 AM
    Hey, are there any guides for setting up graphcool cli in ci/cd workflows? I'm trying to authenticate before deploying
  • i

    iamclaytonray

    11/26/2017, 1:50 AM
    Does anyone know how to sync the Relay-compliant IDL locally?
    o
    • 2
    • 5
  • r

    rein

    11/26/2017, 10:56 AM
    if I have a subscription for notifications without any filters client side, but I add a permission query that a user can only see notifications meant for him or her, is that a good approach? Is that a permission query called SomeNotificationExists where I check the receiver?
  • r

    rein

    11/26/2017, 10:58 AM
    is there something wron gwith this permission query?
  • r

    rein

    11/26/2017, 10:58 AM
    Copy code
    query readNotification($user_id: ID) {
      SomeNotificationExists(filter: {AND: [{sender: {id_not: $user_id}}, {receiver: {id: $user_id}}]})
    }
  • r

    rein

    11/26/2017, 12:20 PM
    I m trying to filter every notification to see if the current user is the receiver but not the sender
  • r

    rein

    11/26/2017, 12:20 PM
    but it seems to check all notifications and just returns one true or false for the whole query
1...447448449...637Latest