2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

appsync subscriptionで引数使うときmutationの戻り値に含めないと動かない

Last updated at Posted at 2020-02-27

Appsyncでsubscription使ったときにハマったので共有します。

例えば下記のsubscription定義があるとします。

type Subscription {
	subscribeToNewMessage(conversationId: ID!): Message
		@aws_subscribe(mutations: ["createMessage"])
}

"createMessage" Mutationが実行された、かつ、conversationIdがある値のときにsubscribeしたいって定義です。

これがNuxt.jsで作ったクライアントから上手く動かなかったのですが、クライアントから実行するMutationの書き方に問題がありました。

動かなかったときのMutationは次です。

const createMessage = /* GraphQL */ `
  mutation createMessage(
    $id: ID!
    $content: String
    $conversationId: ID!
    $s3Key: String
  ) {
    createMessage(
      content: $content
      conversationId: $conversationId
      id: $id
      s3Key: $s3Key
    ) {
      id
      content
      sender
    }
  }
`;

次に動いたときのMutationはコレです。

const createMessage = /* GraphQL */ `
  mutation createMessage(
    $id: ID!
    $content: String
    $conversationId: ID!
    $s3Key: String
  ) {
    createMessage(
      content: $content
      conversationId: $conversationId
      id: $id
      s3Key: $s3Key
    ) {
      id
      conversationId     ←ここ
      content
      sender
    }
  }
`;

subscriptionの引数に定義したconversationIdを戻り値に指定したら動きました。

どうやら、mutationの引数ではなく、戻り値を見て発火しているみたいです。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?