Open
Description
We need to create an API for the above screen.
This API should only query the database (DynamoDB) and should not fetch data from the Graph API.
The following tables in DynamoDB store the required data:
Table 1: infra-core-api-sig-details
Partition Key: sigid
Sort Key: signame
Other Attributes: leadGroupId, memberGroupId, description
Table 2: infra-core-api-sig-member-details
Partition Key: sigid
Sort Key: memberEmail
Other Attributes: memberName, memberId, designation
Additional Notes:
The sigid will be determined from the SIG name and will follow a deterministic approach.
The API must retrieve all SIG member details from both tables, structured as per the wireframe.
We need to mock sample data in these tables to start development.
APIs should not be cached to ensure real-time data retrieval.
One record each has been mocked in the database.
Let me know if any questions