https://www.prisma.io/ logo
Join SlackCommunities
Powered by
# random
  • a

    Alessio

    05/08/2018, 1:58 PM
    hi!
    👋 4
  • v

    Vendicto

    05/09/2018, 7:56 AM
    Hi guys, I will be appreciate any help 🍺 https://stackoverflow.com/questions/50248246/graphcool-graphql-how-to-make-exact-filter-in-array-of-id
    a
    • 2
    • 2
  • w

    weakky

    05/11/2018, 9:48 AM
    How to be GDPR ready in one line 😛 https://github.com/segmentio/in-eu
    if inEu() { f*** u }
    fast parrot 4
    s
    h
    • 3
    • 4
  • i

    itti Singh

    05/11/2018, 10:20 AM
    Hi Everyone, Im a front end developer that's exploring the world of graphql. My primary goal is to help move from a monolyth built with .net 4.7 mvc using razor to a set of frontend apps that communicate through REST apis.
    h
    • 2
    • 2
  • i

    itti Singh

    05/11/2018, 10:21 AM
    So if anyone can point me to any good resources with that in mind. That would be awesome. But i'm here to make friends and learn so any guidance is much appreciated.
    👋 1
  • m

    Maxime Scibetta

    05/12/2018, 11:42 AM
    Hey everybody somebody know how can ignore a field if $variable is null for this
    Copy code
    query filterCourses(
            $hourStartMin: Int, $hourStartMax: Int, $hourEndMin: Int, $hourEndMax: Int, $date: String, $locationEnd: String, $locationStart: String){
            allCourses(
                filter: {
                    status: OPEN,
                    hourStart_gte: $hourStartMin,
                    hourStart_lte: $hourStartMax,
                    hourEnd_gte: $hourEndMin,
                    hourEnd_lte: $hourEndMax,
                    date: $date,
                    locationEnd: { name: $locationEnd },
                    locationStart: { city: $locationStart }
                }
            ){
            ..node..
        }
    m
    j
    r
    • 4
    • 3
  • z

    zonofthor

    05/19/2018, 11:46 PM
    it's a one-timer, should I programmatically create a GraphQL query - or is this best done in resolver somehow?
  • k

    KyleG

    05/20/2018, 5:12 PM
    Looking at the GitHub account of a past co-worker of mine. I think his repository count of 69 is intentional. Also he has the best repo description I've seen. https://github.com/sorahn/learn-docker
  • k

    kylemh

    05/21/2018, 5:20 PM
    @KyleG
    commit #c5c86df - 'for the swarm'
    😆 1
  • v

    Vendicto

    05/22/2018, 1:33 PM
    Hi there, Will graphcool be support .HEIC format ? >Supported extensions: png, jpg, jpeg, svg, gif, bmp, webp
  • s

    simz

    05/28/2018, 1:41 PM
    hello everybody please try my new boilerplate: with SSR / material-ui / universal-component all in webpack4 https://github.com/simonjoom/Apollo-RFX-PRISMA-ssr-boilerplate I need competent developer with prisma
  • s

    sakhmedbayev

    06/01/2018, 3:48 AM
    it seems I have this issue https://www.prisma.io/forum/t/prisma-deploy-error-when-upgrading-to-prisma-1-8/3439/2
  • s

    sakhmedbayev

    06/01/2018, 3:48 AM
    how can I check which prisma server version I am running?
  • s

    sakhmedbayev

    06/01/2018, 3:49 AM
    here is what I have in docker-compose.yml
  • s

    sakhmedbayev

    06/01/2018, 3:49 AM
    ```
  • s

    sakhmedbayev

    06/01/2018, 3:49 AM
    Copy code
    version: '3'
    services:
      prisma:
        image: prismagraphql/prisma:1.8
  • s

    sakhmedbayev

    06/01/2018, 6:33 AM
    say, I initialize brand new prisma service, how can I specify what database name I want to use?
    s
    • 2
    • 2
  • s

    sakhmedbayev

    06/01/2018, 6:34 AM
    in another words, I want my prisma service to use a specific database name
  • b

    ben

    06/01/2018, 11:14 AM
    I’d like to connect with people who have worked on curated lists before. We’re building a product for you www.spreadshare.co If you’re curating yourself or can recommend a good curator in tech/startup/digital please write a comment / get in touch ✍️ We have 12 curator passes left (creating content will be invite only in the first months of our 3.0 launch)
  • d

    daveek

    06/04/2018, 4:10 PM
    https://blog.github.com/2018-06-04-github-microsoft/
    ☹️ 4
    🙂 3
    🤔 3
    a
    • 2
    • 2
  • s

    sakhmedbayev

    06/05/2018, 8:54 AM
    Hello there! Is there a way to cut a queried field to a certain length? Say, I have a
    text
    field in my
    Post
    type. I do not want to get a full text from
    text
    field, only first 150 symbols.
    w
    a
    • 3
    • 7
  • p

    Pradnya

    06/05/2018, 10:29 AM
    hi all
  • p

    Pradnya

    06/05/2018, 10:30 AM
    is there any example code available for github graphQL api integration with ios
  • s

    sakhmedbayev

    06/05/2018, 4:35 PM
    Is there an example of how to run raw SQL queries against Prisma DB?
  • j

    Jim

    06/05/2018, 9:26 PM
    How does AWS AppSync compare to Prisma / Graphcool Baas?
    ❔ 1
    c
    a
    s
    • 4
    • 6
  • u

    UsulPro

    06/06/2018, 1:55 PM
    If I invoke promises within resolver or hook functions in Graphcool should I wait them to be resolved? example:
    Copy code
    export default async event => {
    
      /* ... */
    
      sgMail.send(msgInfo)
          .then(() => console.log('sgMail is sent'))
          .catch((err) => console.log('sgMail error:', err))
    
      // Or should I await until it's resolved?
      // await sgMail.send(msgInfo)
      //     .then(() => console.log('sgMail is sent'))
      //     .catch((err) => console.log('sgMail error:', err))
    
    
      return event;
    };
    may I be sure that mail will be sent without
    await
    ?
    v
    t
    • 3
    • 4
  • k

    kitze

    06/08/2018, 11:37 AM
    https://twitter.com/jsui_app/status/1005041601142575104 If UI is your thing, you can now use JSUI to quickly generate graphql projects
    🔥 9
    👍 1
    fast parrot 1
    c
    • 2
    • 3
  • h

    harmony

    06/08/2018, 11:40 AM
    👌
  • f

    felixthedev

    06/08/2018, 3:54 PM
    Hello everyone 👋, my name is Felix. I am new to this group. Nice to meet you all.
    👋 14
  • q

    qsys

    06/13/2018, 2:02 PM
    when I want to do a mutation, in which I want to add relations with existing entities, should this work?
    Copy code
    mutation createBookingForAgent($agent: BookingForAgentagentAgent!,
      	$booking: BookingForAgentbookingBooking!) {
      createBookingForAgent(
        agent: $agent
        booking: $booking
      ) {
        id
      }
    }
    I can't make this work properly: I pass the ID of the agent and booking (which is enough to know which agent/booking it is, it are one-to-one relations):
    Copy code
    GraphQL error: Variable '$booking' expected value of type 'BookingForAgentbookingBooking!' but got: "cje8yzetf94i301976ne1mx3y". Reason: Expected 'BookingForAgentbookingBooking', found not an object. (line 1, column 123):
    mutation createBookingForAgent($agent: BookingForAgentagentAgent!, $agentPaymentStatuses: String, $agentStatuses: String, $booking: BookingForAgentbookingBooking!)
1...212223...53Latest