All Projects → catalinmiron → uzual-mobile

catalinmiron / uzual-mobile

Licence: other
Feed your brains with habits for a better mood

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to uzual-mobile

Kikstart Graphql Client
🚀 Small NodeJS Wrapper around apollo-client that provides easy access to running queries, mutations and subscriptions.
Stars: ✭ 27 (-59.7%)
Mutual labels:  graphql-client, apollo-client
Productivity Frontend
Productivity Application - Kanban Style Productivity Management Application with Customizable Boards, Lists and Cards to Make You More Productive.
Stars: ✭ 234 (+249.25%)
Mutual labels:  graphql-client, apollo-client
Apollo Angular
A fully-featured, production ready caching GraphQL client for Angular and every GraphQL server 🎁
Stars: ✭ 1,058 (+1479.1%)
Mutual labels:  graphql-client, apollo-client
Apollo Offline
An offline toolkit for the Apollo client
Stars: ✭ 186 (+177.61%)
Mutual labels:  offline-first, apollo-client
mobile
🤳 React Native code examples for JavaScript Everywhere by Adam Scott, published by O'Reilly Media
Stars: ✭ 33 (-50.75%)
Mutual labels:  apollo-client, expo
edgestack
[UNMAINTAINED] A Universal React Stack with deeply integrated localization Support, semi-automatic route-based code splitting, Hot Module Reloading (HMR), Redux, Apollo GraphQL and more...
Stars: ✭ 77 (+14.93%)
Mutual labels:  graphql-client, apollo-client
Apollo Link
🔗 Interface for fetching and modifying control flow of GraphQL requests
Stars: ✭ 1,434 (+2040.3%)
Mutual labels:  graphql-client, apollo-client
boilerplate
Fullstack boilerplate using Typescript, React, Node & GraphQL
Stars: ✭ 738 (+1001.49%)
Mutual labels:  expo, prisma
react-native-appsync-s3
React Native app for image uploads to S3 and storing their records in Amazon DynamoDB using AWS Amplify and AppSync SDK
Stars: ✭ 18 (-73.13%)
Mutual labels:  apollo-client, expo
boilerplate
Boilerplate for @prisma-cms
Stars: ✭ 22 (-67.16%)
Mutual labels:  apollo-client, prisma
Prisma Auth0 Example
Boilerplate Prisma Startup
Stars: ✭ 184 (+174.63%)
Mutual labels:  apollo-client, prisma
nextjs-graphql-adminpanel
Admin panel built with NextJS(Typescript), Material UI, Apollo Client & GraphQL. In the backend, Prisma 2 with Nexus and Mysql is used.
Stars: ✭ 119 (+77.61%)
Mutual labels:  apollo-client, prisma
Typescript Expo Apollo Boilerplate
Clean boilerplate for TypeScript + Expo (React Native) + React Apollo (GraphQL)
Stars: ✭ 144 (+114.93%)
Mutual labels:  apollo-client, expo
Apollo Client
🚀  A fully-featured, production ready caching GraphQL client for every UI framework and GraphQL server.
Stars: ✭ 17,070 (+25377.61%)
Mutual labels:  graphql-client, apollo-client
Naperg
Fullstack Boilerplate GraphQL. Made with React & Prisma + authentication & roles
Stars: ✭ 661 (+886.57%)
Mutual labels:  apollo-client, prisma
Angular1 Apollo
AngularJS integration for the Apollo Client
Stars: ✭ 108 (+61.19%)
Mutual labels:  graphql-client, apollo-client
gatsby-starter-redux-saas
An Gatsby starter for Saas products. Uses redux and apollo and a graphql token auth backend.
Stars: ✭ 18 (-73.13%)
Mutual labels:  graphql-client, apollo-client
dribbble-clone
FullStack GraphQL Dribbble Clone 🏀
Stars: ✭ 29 (-56.72%)
Mutual labels:  apollo-client, prisma
ts-react-apollo
Thin-Layer around react apollo client to use typescript to the fullest
Stars: ✭ 18 (-73.13%)
Mutual labels:  graphql-client, apollo-client
Teller-Android
Android library that manages your app's cached data with ease.
Stars: ✭ 13 (-80.6%)
Mutual labels:  offline-first

Would you like to support me?

Buy Me A Coffee

UZUAL

Feed your brains with habits for a better mood

Light Theme

Dark Theme

mutation createUser {
  signup(
    email: "[email protected]"
    name: "Catalin Miron"
    password: "password"
  ) {
    token
  }
}

mutation signin {
  login(email: "[email protected]", password: "password") {
    token
  }
}

# mutation addHabit{
#   addHabit(title:"1 Coffee / day", description:"Just one coffee and see how it feels"){
#     id
#   }
# }

# mutation addDailyHabit{
#   addDailyHabit(habitId:"cjutuwgbu000t0765vjdje6n5", done: true, date: "2019-04-09"){
#     id
#   }
# }

query me {
  me {
    name
    email
    pushToken
    id
    isPro
  }

  moods(first: 5, orderBy: date_DESC) {
    id
    type
    date
  }
  habits(first: 5) {
    title
    description
    starred
    habits(first: 5, orderBy: date_DESC) {
      id
      date
      done
    }
  }
}

query getHabits {
  habits {
    id
    title
    description
    habits {
      id
      done
      date
    }
  }
}

query myMoods {
  moods(
    where: { date_gte: "2019-03-01", date_lte: "2019-03-30" }
    orderBy: date_ASC
  ) {
    id
    type
    date
  }
}

mutation setMood {
  setMood(date: "2019-04-23", type: Frown) {
    id
  }
}

mutation setDailyHabit {
  setDailyHabit(
    id: "cjuxtixuk0066073847pvhos9"
    done: false
    date: "2019-04-01"
  ) {
    done
  }
}

//For changing the date for the current month + refreshing

this.props.data.stopPolling();
await this.props.data.refetch({
  start,
  end
});
this.props.data.startPolling(5000);

Assets + Copyrights for them


Icons made by Skyclick from www.flaticon.com is licensed by CC 3.0 BY
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].