Tools for handling appsync responses and routes.
Project description
appsync-tools
##Provides helpful tools for parsing database responses and handling routes inside of Lambda for AWS Appsync.
DB response parsing
Aurora results are returned as a list of dictionaries with the column names being the key. Nulls (returned by Aurora as isNull) are returned as None types. Any value that can be parsed as json is cast from a string to a list/dictionary. Responses are returned formated as:
[
{"columnOneName": "value", "columnTwoName": "value"},
{"columnOneName": "value", "columnTwoName": "value"}
]
Where each item in the top level array is a separate row.
Dynamodb results are returned as either a dictionary (for get_item operations) or a list of dictionaries (query).
Pretty parsing Aurora records
pretty_parse_aurora(records, type_attribute=None) -> list
Arguments:
- records -- The records from the API query (execute_statement()["records"])
Keyword Args:
- type_attribute -- If used will pass results to typify(results, type_attribute=type_attribute) before returning
from appsync_tools import pretty_parse_aurora
response = client.execute_statement(
secretArn=environ["PG_SECRET"],
database=environ["DB_NAME"],
parameters=parameters,
resourceArn=environ["DB_ARN"],
includeResultMetadata=True,
sql=sql
)
print(pretty_parse_aurora(response))
Parsing Dynamodb records
pretty_parse_dynamo(records, type_attribute=None) -> list | dict
Arguments:
- records -- The Item(s) from a call to query, get_item
Keyword Args:
- type_attribute -- If used will pass results to typify(results, type_attribute=type_attribute) before returning
from appsync_tools import pretty_parse_dynamo
response = client.get_item(
Key={"pk": "foo", "sk": "bar"}
)
print(response.get("Item"))
Adding __typename to all records based on an attribute
typify(records, type_attribute="type") -> list | dict Arguments:
- records -- The Item(s) from a call to query, get_item
Keyword Args:
- type_attribute -- Attribute name that contains the __typename value
Example
from appsync_tools import typify
response = client.get_item(
Key={"pk": "foo", "sk": "BarType"}
)
print(typify(response.get("Item"), type_attribute="sk"))
Appsync resolver function routing
Creating a route
appsync_tools.router is an instance of appsync_tools.router.Router. The router object can be used to specify that a function is used for a specific Appsync type by decoration the function with the router.route() method. The decorated function should accept the Lambda event as its only argument.
router.route(route: str|list) -> function keyword Args:
- route -- The route(s) that this function applies to. "route" is expressed as .. For example, using this schema:
type Foo {
bar: str!
}
Query {
GetFoo: Foo
}
the route passed to the decorator to handle GetFoo would be "Query.GetFoo". route can be either a single route or a list of routes.
Example
from appsync_tools import router
def handler(event, _):
router.handle_route(event)
@router.route(route="Query.GetFoo)
def get_foo(event):
print(event)
event = {
"arguments": {"my_var": "something"}
}
handler(event, None)
# Will print: '{"arguments": {"my_var": "something"}}'
Creating a default route
Decorating a function with @default_route will make it the default function to call if there are no matching routes. It takes no direct arguments
Example
from appsync_tools import router
def handler(event, _):
router.handle_route(event)
@router.route(route="Query.GetFoo")
def get_foo(event):
print("bar")
@router.default_route
def default(event):
print("hey, I'm the default route")
event = {
"info": {
"parentType": "No",
"field": "Route",
}
}
handler(event)
# Will print: "hey, I'm the default route"
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for appsync_tools-2.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba405e0fb3e91841c5b389b938cd1e0d4d8f2fcb0fc95a89a6f98dcf2556f477 |
|
MD5 | 512a7d536e5915b9f74843ba89c460c2 |
|
BLAKE2b-256 | ae6d4bc94fbf68eccefeadfdc2432f14a724c6a54882b4bbc47ac132cc7f516f |