nova-graphql

yarn > yarn dev ...

Usage no npm install needed!

<script type="module">
  import novaGraphql from 'https://cdn.skypack.dev/nova-graphql';
</script>

README

Nova GraphQL server

Development

> yarn
> yarn dev
...

Push notification

Here is the interface for the data you can pass to display a notification overlay:

interface IData {
  type: 'marketing' | 'user';
  cover?: string;
  logo?: string;
  logoWithCircle?: boolean;
  icon?: 'abroad' | 'privacy' | 'purchase' | 'refill' | 'warning';
  title: string;
  description: string;
  component?: 'refill';
  buttonSubtitle?: string;
  buttonTitle: string;
  buttonLink?: string;
  buttonAction?: 'refill' | 'options';
}