in app/mysfits-service/service/mythicalMysfitsService.py [0:0]
def getMysfits():
filterCategory = request.args.get('filter')
if filterCategory:
filterValue = request.args.get('value')
queryParam = {
'filter': filterCategory,
'value': filterValue
}
# a filter query string was found, query only for those mysfits.
serviceResponse = mysfitsTableClient.queryMysfits(queryParam)
else:
# no filter was found, retrieve all mysfits.
app.logger.info('retrieving all mysfits')
serviceResponse = mysfitsTableClient.getAllMysfits()
flaskResponse = Response(serviceResponse)
flaskResponse.headers["Content-Type"] = "application/json"
return flaskResponse