Skip to content

Instantly share code, notes, and snippets.

View sid88in's full-sized avatar

Siddharth Gupta sid88in

  • AWS AI (ex Twitch, Glassdoor, Yahoo)
  • San Francisco
  • X @mrsanfran2
View GitHub Profile
@sid88in
sid88in / 3-22-2018-WG.md
Last active March 23, 2018 03:55 — forked from coleturner/3-22-2018-WG.md
GraphQL Working Group Notes - March 22, 2018

GraphQL Working Group – March 22, 2018

Introductions Agenda Recap Update on next spec release

  • In last meeting, SDL was the last blocker for next version of the spec
  • Identified compelling blocker: default values and null
  • Question: about timeframe between releases
  • release cadence
swagger: '2.0'
info:
title: va3
version: '1.0'
schemes:
- https
produces:
- application/json
x-amazon-apigateway-request-validators:
full:
swagger: '2.0'
info:
title: API Gateway - Request Validation Demo - rpgreen@amazon.com
version: '1.0'
schemes:
- https
produces:
- application/json
x-amazon-apigateway-request-validators:
full:
BaseViz:
def get_json_data(self):
return json.dumps([])
TableViz:
def get_json_data(self):
df = self.get_df()
print("This is happening")
return json.dumps(dict(records=df.to_dict(orient="records"),columns=list(df.columns),),default=utils.json_iso_dttm_ser,)