Skip to content

Austin

My feedback

3 results found

  1. 8 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Austin supported this idea  · 
    An error occurred while saving the comment
    Austin commented  · 

    +1 to @Toshi example for AWS Amplify. Coming from that and using Realm it seems like a very fragmented experience.

    In Amplify, its so nice because you can define all your models in GraphQL and then it autogenerates resolvers/etc for you.

    ```
    type Hero
    @model
    @auth(
    rules: [
    {
    allow: owner
    provider: oidc
    ownerField: "owner"
    identityClaim: "uid"
    operations: [read, create, update, delete]
    }
    {
    allow: groups
    provider: oidc
    groupsField: "group"
    groupClaim: "groups"
    operations: [read, create, update, delete]
    }
    ]
    ) {
    id: ID!
    name: String
    owner: ID
    group: ID
    age: String
    }
    ```

    On top of that you can define your permissions using GraphQL directives. The really sad thing about AWS Amplify is it uses DynamoDB which is awful to put it nicely.

  2. 55 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Austin supported this idea  · 
  3. 39 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Austin supported this idea  · 

Feedback and Knowledge Base