zendesk / linksf

A mobile website to connect those in need in to services that can help them
http://link-sf.com
Apache License 2.0
62 stars 38 forks source link

ban null in FB normalization #421

Closed gregziegan closed 5 years ago

gregziegan commented 5 years ago

Firebase collections return null if they are empty, even if they're meant to be empty as a default state.

This changes the "schema" of firebase to:

{
  organizations: [Organization!]!
  locations: [Location!]!
}

from

{
  organizations: [Organization!]
  locations: [Location!]
}