0.1.0 • Published 4 years ago

recurr v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

recurr 🔄

RRule library to find recurrences conforming to rfc5545

Demo

Now available as remote schema 🔗

Graphql Playground

  1. Head over to: https://recurr.glitch.me
  2. Execute a query from the Sample Query section

Usage with Hasura:

  1. Remix Remix on Glitch

  2. Click on Show Live at the top of the Glitch UI to get the URL.

  3. Add as Remote Schema in Hasura GraphQL Engine.

Sample Query
query {
  findRecurrences(
    freq: 1
    stDt: "2019-11-25"
    endDt: "2019-12-26"
    wkDay: [0, 1]
  ) {
    recurrences
    rrule
    rruleNLP
  }
}