https://www.prisma.io/ logo
Join Slack
Powered by
# orm-help
  • f

    Firdaus

    10/29/2018, 11:00 AM
    Yo! from Indonesia
    👋 2
    🔥 1
  • a

    Akira Laine

    10/29/2018, 11:06 AM
    Hey everyone!
    👋 1
  • g

    Guillaume AMAT

    10/29/2018, 11:09 AM
    Hi there 👋
    👋 1
  • l

    l0ck3

    10/29/2018, 11:26 AM
    Hello folks!
    👋 1
  • a

    aydinsenturkk

    10/29/2018, 11:58 AM
    Hi there!
    👋 1
  • z

    Zaher Aboushakra

    10/29/2018, 11:59 AM
    Hi there!
    👋 1
  • s

    SIDDIK MEHDI

    10/29/2018, 12:17 PM
    Hi everyone
    👋 1
  • k

    Kafil

    10/29/2018, 1:18 PM
    Hello everyone
    👋 1
  • d

    Dirk

    10/29/2018, 1:59 PM
    Hey ho
    👋 1
  • h

    Hassan

    10/29/2018, 2:32 PM
    Has anyone here implemented GraphQL + RabbitMQ (or any AMQP service) ?
    g
    n
    • 3
    • 2
  • d

    Daniel

    10/29/2018, 3:45 PM
    What's up everyone!
    fast parrot 4
  • g

    Gary B

    10/29/2018, 3:55 PM
    Hello everyone!
    🐛 1
  • g

    Gary B

    10/29/2018, 3:55 PM
    Anyone using the new MongoDB alpha connector?
    n
    • 2
    • 4
  • d

    davidnunez

    10/29/2018, 5:20 PM
    Hi! At the MIT Museum we are standing up a prisma / graphql-yoga server for our Collections API...We're using it to power in-gallery interactive experiences and our Online Collections Portal. ETA sometime this month for public access to the API.
    👍 3
    🙌 7
  • y

    yantakus

    10/29/2018, 5:57 PM
    Hi here. How do I type remote data in graphql? I want to fetch data from remote server, combine with data from local db and return it from resolver. But of course it doesn’t work, i get
    Cannot query field "snippet" on type "Video"
    . This is obvious, because I don’t have this field in my
    Video
    type. Do I have to type remote data as well? If yes, how do I type the following data structure:
    Copy code
    thumbnails: {
      default: {
        url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/default.jpg>",
        width: 120,
        height: 90
      },
      medium: {
        url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/mqdefault.jpg>",
        width: 320,
        height: 180
      },
      high: {
        url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/hqdefault.jpg>",
        width: 480,
        height: 360
      },
      standard: {
        url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/sddefault.jpg>",
        width: 640,
        height: 480
      },
      maxres: {
        url: "<https://i.ytimg.com/vi/Tro6SQJJ8tA/maxresdefault.jpg>",
        width: 1280,
        height: 720
      }
    },
    ?
    h
    • 2
    • 2
  • a

    aman06

    10/29/2018, 6:04 PM
    is it possible to use a server side subscription to kick off a cron job every time my data model is changed?
  • z

    Zefex Developer

    10/29/2018, 6:16 PM
    I'm really confused about this Prisma Client, what is this about, the docs only says how to use but not the meaning and the reason to use that over the regular way
    i
    h
    • 3
    • 22
  • i

    ian

    10/29/2018, 6:27 PM
    Anyone here from the Prisma org?
  • i

    ian

    10/29/2018, 6:33 PM
    I think a lot of us are really excited about the Prisma product suite. I think there’s many of us who have questions about product roadmap and where you are headed (https://www.prisma.io/features/databases/). This is especially important for the lot of us who want to use this in production on bigger projects Can you give us an estimate on support for Geo (psql + mysql) and MongoDB, plus perhaps a large window for other DB techologies? I’d love to have an idea on when Neo4J support would be slated personally.
    h
    • 2
    • 9
  • j

    Jinesh

    10/29/2018, 7:09 PM
    Hello peeps! :)
    d
    • 2
    • 1
  • e

    Elie Steinbock

    10/29/2018, 7:20 PM
    Hey, does prisma support mongo yet?
    d
    h
    +2
    • 5
    • 4
  • l

    lribeiro

    10/29/2018, 7:40 PM
    Hi, I am getting the following error constantly while trying to invoke chromeless. Does anyone here knows what could be wrong?
    Error_log.txt
  • d

    David Verhulst

    10/29/2018, 8:24 PM
    When is the mysql support for an existing MySQL-DB scheduled?
  • z

    Zefex Developer

    10/29/2018, 9:23 PM
    Where can I find a Apollo Server 2 boilerplate or example?
    f
    • 2
    • 5
  • t

    Tanner

    10/30/2018, 3:13 AM
    anyone have success introspecting a postgres db? I’m getting a ton of errors after introspecting and trying to deploy?
    Copy code
    Global
        ✖ Could not find the relation between the models Campus and CampusContact in the database
        ✖ Could not find the relation between the models Notification and User in the database
        ✖ Could not find the relation between the models Task and User in the database
        ✖ Could not find the relation between the models Booking and Room in the database
    ..........
    • 1
    • 1
  • t

    Tanner

    10/30/2018, 3:13 AM
    Copy code
    type CampusContact @pgTable(name: "campus_contacts") {
        id: Int! @unique
        campus_id: Campus!
        contact_id: Contact!
        created_at: DateTime!
        updated_at: DateTime!
    }
    
    type Campus @pgTable(name: "campuses") {
        id: Int! @unique
        community_id: Community!
        updated_at: DateTime!
        zip: Int
    }
  • f

    faure

    10/30/2018, 3:27 AM
    How do I auth myself on the playground so that I can send a mutation
    p
    • 2
    • 14
  • p

    pedro

    10/30/2018, 3:27 AM
    Hi guys, I have domains in my schema, but when I’m trying to query
    factories(where: { domains: { in: ["<http://gmail.com|gmail.com>"] } })
    it says domain does not exists in the
    whereInputs
    h
    • 2
    • 9
  • e

    Elfayer

    10/30/2018, 3:34 AM
    Is this chat still active?
  • a

    atito

    10/30/2018, 4:47 AM
    Hey guys, I have got stuck on something. No after the new
    prisma client
    method and generates the typedef in
    .ts
    file and the
    prisma.graphql
    is not getting generated anymore. Now, how can I import types in the app schema like before using
    graphql-import
    ?
    e
    • 2
    • 6
1...144145146...637Latest