私は試した
type Mutation {
deleteUser(id: ID!): User @delete @broadcast(subscription: "userDeleted")
}
type Subscription {
userDeleted(id: ID!): User
}
そして、メソッドauthorize
とfilter
戻り値のサブスクリプションを作成しましたtrue
。
しかし、私はこのエラーが発生します:
Illuminate\Database\Eloquent\ModelNotFoundException: モデル [App\User] のクエリ結果がありません
deleteUser
突然変異は機能します。サブスクリプションのみが機能しません。ブロードキャストにPusherを使用すると、 horizo nダッシュボードにエラーが表示されます。