Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
- image: cimg/aws:2023.01
environment:
CODEARTIFACT_ENV: PROD
ECR_ENV: DEV
SERVICE_NAME: "dynamo-access-layer"
OUT_DIR: "buildscripts"
steps:
Expand Down Expand Up @@ -50,3 +51,6 @@ workflows:
jobs:
- "publish-image":
context: "org-global"
filters:
branches:
only: "qa"
1 change: 1 addition & 0 deletions src/service/QueryService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ExecuteStatementInput } from "@aws-sdk/client-dynamodb";

class QueryService {
public async query(query: Query): Promise<QueryResponse> {
console.log("Incoming query", query);
let statementInput: ExecuteStatementInput | null = null;

const queryKind = query.kind;
Expand Down