0
1

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.

AWS AppSync and kintone REST API GraphQL Query Sample

Last updated at Posted at 2021-07-25

AWS AppSync と kintone REST API を接続し、kintoneのレコードを取得するサンプルです。
※レコード作成・削除についての記載はありません。

環境

  • mac
  • AWS AppSync
  • kintone

対象

  • AWS AppSync から REST API データソースに接続する方法を知りたい方
  • AppSyncコンソールからのスキーマ・リゾルバーの基本的な作成方法を知りたい方
  • kintone REST API と AppSync を接続する方法を知りたい方

前提条件

  • AWSのアカウントがあること
  • AppSyncの基本的な操作が分かること
  • kintone REST API の基本的な知識があること

kintone データベース

AppSyncから接続する対象の kintoneアプリの設定は下記の通り

スクリーンショット 2021-07-21 7.35.57.png

  • owner 文字列(1行)
  • name 文字列(1行)
  • description 文字列(1行)
  • id レコード番号
  • createdAt 作成日時
  • updatedAt 更新日時

※フィールドコードとフィールド名は同じです。

AppSync API の作成

AppSyncコンソールから「APIを作成」を選択
スクリーンショット 2021-07-21 7.27.16.png

「一から構築」を選択
スクリーンショット 2021-07-21 7.27.40.png

API名を入力→「作成」
スクリーンショット 2021-07-21 7.28.47.png

「スキーマを編集」選択
スクリーンショット 2021-07-21 7.29.01.png

スキーマを入力→「スキーマを保存」を選択
スクリーンショット 2021-07-25 14.04.05.png

サンプルスキーマ

type DateTime {
	type: FiledType
	value: AWSDateTime
}

type Description {
	type: FiledType
	value: String
}

enum FiledType {
	RECORD_NUMBER
	SINGLE_LINE_TEXT
	CREATED_TIME
	UPDATED_TIME
}

type Name {
	type: FiledType
	value: String!
}

type Note {
	id: RecordNumber
	owner: Owner
	name: Name
	description: Description
	createdAt: DateTime
	updatedAt: DateTime
}

type Owner {
	type: FiledType
	value: String
}

type Query {
	singleNote(id: ID!): Record
	listNotes: Records
}

type Record {
	record: Note
}

type RecordNumber {
	type: FiledType
	value: ID!
}

type Records {
	records: [Note]
}

schema {
	query: Query
}

データソース作成

AppSyncと接続するデータソースにHTTPを選択します。

「データソースを作成」を選択
スクリーンショット 2021-07-21 7.40.22.png

データソースタイプに「HTTPエンドポイント」、「HTTPエンドポイント」にkintoneのサブドメインのURLを設定→「作成」を選択
スクリーンショット 2021-07-21 7.42.05.png

データソースが作成されます
スクリーンショット 2021-07-21 7.42.15.png

リゾルバーの作成

メニューからスキーマを選択して、Queryのリゾルバーからアタッチを選択

データソースは前段で作成したデータソースを選択
スクリーンショット 2021-07-25 14.46.27.png

マッピングテンプレートの作成

GraphQLクエリをHTTPの形式に変換するマッピングテンプレートを作成します。

singleNote リクエストマッピングテンプレート

  • <App ID>・・・kintoneアプリID
  • <API Token>・・・kintoneアプリのAPIトークン
{
  "version": "2018-05-29",
  "method": "GET",
  "resourcePath": "/k/v1/record.json",
  "params":{
      "query":{"app": "<App ID>", "id": $context.arguments.id },
      "headers": {
          "X-Cybozu-API-Token": "<API Token>"
      }
  }
}

singleNote レスポンスマッピングテンプレート

$ctx.result.body

listNotes リクエストマッピングテンプレート

  • <App ID>・・・kintoneアプリID
  • <API Token>・・・kintoneアプリのAPIトークン
{
  "version": "2018-05-29",
  "method": "GET",
  "resourcePath": "/k/v1/records.json",
  "params":{
      "query":{"app": "<APP ID>"},
      "headers": {
          "X-Cybozu-API-Token": "<API Token>"
      }
  }
}

listNotes レスポンスマッピングテンプレート

# if($ctx.error)
  $util.error($ctx.error.message, $ctx.error.type)
# end
## If the response is not 200 then return an error. Else return the body **
# if($ctx.result.statusCode == 200)
    $ctx.result.body
# else
    $utils.appendError($ctx.result.body, "$ctx.result.statusCode")
# end

GraphQL クエリ作成

GraphQL クエリを作成してテストします。

singleNote

クエリ

query MyQuery {
  singleNote(id: 1) {
    record {
      id {
        value
      }
      name {
        value
      }
      description {
        value
      }
    }
  }
}

実行結果

{
  "data": {
    "singleNote": {
      "record": {
        "id": {
          "value": "1"
        },
        "name": {
          "value": "1/10 やること"
        },
        "description": {
          "value": "部屋の片付け"
        }
      }
    }
  }
}

listNotes

クエリ

query MyQuery {
  singleNote(id: 1) {
    record {
      id {
        value
      }
      name {
        value
      }
      description {
        value
      }
    }
  }
  listNotes {
    records {
      id {
        value
      }
      name {
        value
      }
      description {
        value
      }
    }
  }
}

実行結果

{
  "data": {
    "singleNote": {
      "record": {
        "id": {
          "value": "1"
        },
        "name": {
          "value": "1/10 やること"
        },
        "description": {
          "value": "部屋の片付け"
        }
      }
    },
    "listNotes": {
      "records": [
        {
          "id": {
            "value": "29"
          },
          "name": {
            "value": "2/1 やること"
          },
          "description": {
            "value": "燃えるゴミ"
          }
        },
・・・略
        {
          "id": {
            "value": "2"
          },
          "name": {
            "value": "1/10 やること"
          },
          "description": {
            "value": "図書館で本を借りる"
          }
        },
        {
          "id": {
            "value": "1"
          },
          "name": {
            "value": "1/10 やること"
          },
          "description": {
            "value": "部屋の片付け"
          }
        }
      ]
    }
  }
}

デバッグログ

デバッグのために、メニューの設定から「ログ記録」→「ログを有効化」を選択します。
スクリーンショット 2021-07-25 15.29.10.png

CloudWatchにログが出力されます。

参考

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?