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';
}