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

    spences10

    02/08/2018, 5:26 PM
    can the
    File
    feild be changed or is it advised to leave it and add in your own?
  • r

    Rysia

    02/08/2018, 5:33 PM
    Hi all! I am trying to write a nested Mutation and getting a connect error :
    Copy code
    "message": "No CONNECT permissions"
    . Similar to https://www.graph.cool/forum/t/no-connect-permissions/1940. I have searched around the web but not found a solution
  • s

    spences10

    02/08/2018, 5:38 PM
    Can images be stored on graphcool?
  • s

    spences10

    02/08/2018, 5:38 PM
    I found this: https://www.graph.cool/docs/reference/graphql-api/file-management-eer4wiang0#image-api
  • s

    spences10

    02/08/2018, 5:39 PM
    But it's not clear on how to get images into the database
  • j

    jjaybrown98

    02/08/2018, 6:06 PM
    has prisma remove the ability to run meta queries such as counts?
    n
    w
    • 3
    • 6
  • r

    rem

    02/08/2018, 6:14 PM
    Using the graph.cool ui, I can't set default or migration values in the UI - is that a known bug?
    n
    • 2
    • 3
  • r

    rem

    02/08/2018, 6:14 PM
    I suspect I can work around it by hand coding the change (rather than the GUI version)โ€ฆ
    n
    • 2
    • 4
  • w

    wesbos

    02/08/2018, 6:17 PM
    to delete a field on an Item, we just set to null?
    n
    • 2
    • 3
  • n

    nilan

    02/08/2018, 6:42 PM
    After the great reception for Prisma last month, we're thrilled to announce an invite-only preview for Prisma Cloud prisma โ˜๏ธ Go check it out and let us know what you think <!here>! https://twitter.com/graphcool/status/961669967061057537
    ๐Ÿ™Œ 8
    ๐Ÿ’ฏ 2
    ๐Ÿ˜Ž 5
    ๐Ÿ‘ 1
    ๐Ÿฆœ 15
    prisma 7
    โค๏ธ 1
    fast parrot 5
    ๐Ÿš€ 21
    ๐ŸŽ‰ 9
    parrotwave6 1
    ๐Ÿ‘ 1
    m
    d
    +2
    • 5
    • 11
  • k

    kitze

    02/08/2018, 6:49 PM
    โค๏ธ 9
    ๐Ÿฆœ 3
    parrotwave6 2
    ๐Ÿ’ฏ 1
    prisma 5
    ๐Ÿš€ 5
    fast parrot 3
    ๐Ÿ˜ 2
  • h

    harrisrobin

    02/08/2018, 6:57 PM
    wow ๐Ÿ˜๐Ÿ˜
  • s

    senorcodecat

    02/08/2018, 7:00 PM
    MORE PARROTS
    parrotwave6 2
    fast parrot 4
  • j

    jaaberg

    02/08/2018, 7:03 PM
    Looks awesome!
  • w

    wesbos

    02/08/2018, 7:33 PM
    Yayyy! Just signed up waits
    parrotwave6 5
  • p

    peter

    02/08/2018, 7:34 PM
    regarding local docker clusters, what are the exact commands to:1) start
    mysql
    container and
    prisma
    container. 2) stop these containers when done developing for a period
    • 1
    • 1
  • m

    max

    02/08/2018, 7:37 PM
    submitted
  • m

    max

    02/08/2018, 7:40 PM
    totally pumped by this release ๐Ÿ™‚ crosses fingers for an invite
  • s

    spences10

    02/08/2018, 7:54 PM
    So if I want to add an image to Graphcool/prisma/yoga I have to define the field as a string BASE64?
    h
    w
    • 3
    • 23
  • k

    kitze

    02/08/2018, 8:30 PM
  • k

    kitze

    02/08/2018, 8:31 PM
    Guys! I found a way to be lazy with Prisma ๐Ÿ˜› Then just append
    ...forwarded.queries
    and
    ...forwarded.mutations
    into your resolvers ๐ŸŽ‰
    ๐Ÿ‘๐Ÿป 1
    fast parrot 1
  • k

    kitze

    02/08/2018, 8:32 PM
  • k

    kitze

    02/08/2018, 8:33 PM
    A man can dream... cc @nilan ๐Ÿ™ˆ
    m
    d
    • 3
    • 4
  • s

    Sharon

    02/08/2018, 9:27 PM
    How do I go about building a DB adapter for Prisma?
  • j

    Jacob

    02/08/2018, 10:23 PM
    Hey guys!! I wanted to ask a quick question. Has anyone been able to update a user's password via a reset password link? I am currently using the built-in email/password auth option that Graphcool provides. Thank you!
  • v

    veksen

    02/09/2018, 1:07 AM
    Hey guys, maybe a misunderstanding from our team here. We're using Prisma and still creating our various schema needed for our app as we're going, and one of them are user specified fields -- a little like Google Forms works -- that could be of different values (Int/String/DateTime). Is this possible in a schema? We've tried setting an interface linking to the various types, with a union for all of the possible types, with no luck. This below is defined in the datamodel.graphql
    Copy code
    interface Field {
      id: ID! @unique
      name: String!
      type: String!
    }
    
    type StringField implements Field {
      id: ID! @unique
      name: String!
      type: String!
      value: String!
    }
    
    type IntField implements Field {
      id: ID! @unique
      name: String!
      type: String!
      value: Int!
    }
    
    # union FieldValue = StringField | DateTime | IntField | Float | Boolean
    union FieldValue = StringField | IntField
    
    type Form {
      id: ID! @unique
      name: String!
      author: User!
      kiosk: Kiosk!
      fields: [FieldValue!]!
    }
    m
    m
    • 3
    • 3
  • e

    etx

    02/09/2018, 1:39 AM
    ๐Ÿ‘‹ ๐Ÿค˜
  • e

    etx

    02/09/2018, 1:41 AM
    anyone know the easiest way to try out the latest Prisma code? I see some commits that look like they may fix a couple issues I'm having. Running a local cluster right now @1.1.3
    • 1
    • 1
  • h

    hakubanjin

    02/09/2018, 2:28 AM
    Hey guys -- I am using Graphcool to debug a big react native graphql application I just got my hands on, but it doesn't have a backend anymore. Does anyone know how to log the requests I am sending to the graphcool deployment so I can start trying to make suitable models and hooks? Appreciate any advice while I'm diving into the docs
  • h

    hakubanjin

    02/09/2018, 2:29 AM
    tl;dr how to log requests coming in to the graphcool server?
    • 1
    • 1
1...564565566...637Latest