Skip to content

Commit

Permalink
Merge pull request #4 from CyberPlanning/developement
Browse files Browse the repository at this point in the history
Release v1.2
  • Loading branch information
Hedroed authored Mar 4, 2019
2 parents a81d5ff + 6b53d15 commit d9489ed
Show file tree
Hide file tree
Showing 72 changed files with 15,306 additions and 1,049 deletions.
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,42 @@
# webclient
Web calendar in ELM

## Query GraphQL

```js
query day_planning($grs: [String], $to: DateTime!, $from: DateTime!, $hack2g2: Boolean!, $custom: Boolean!) {
planning(collection: CYBER, affiliationGroups: $grs, toDate: $to, fromDate: $from) {
...events
}
hack2g2: planning(collection: HACK2G2, toDate: $to, fromDate: $from) @include(if: $hack2g2) {
...events
}
custom: planning(collection: CUSTOM, toDate: $to, fromDate: $from) @include(if: $custom) {
...events
}
}

fragment events on Planning {
events {
title
eventId
startDate
endDate
classrooms
teachers
groups
}
}

```

Variables
```
{
"from": "2018-11-12T12:00:00.000",
"to": "2018-12-12T12:00:00.000",
"grs": ["21"],
"hack2g2": true,
"custom": true
}
```
21 changes: 0 additions & 21 deletions bower.json

This file was deleted.

24 changes: 0 additions & 24 deletions bower_components/normalize-css/.bower.json

This file was deleted.

12 changes: 0 additions & 12 deletions bower_components/normalize-css/.editorconfig

This file was deleted.

2 changes: 0 additions & 2 deletions bower_components/normalize-css/.gitattributes

This file was deleted.

1 change: 0 additions & 1 deletion bower_components/normalize-css/.gitignore

This file was deleted.

3 changes: 0 additions & 3 deletions bower_components/normalize-css/.travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions bower_components/normalize-css/LICENSE.md

This file was deleted.

13 changes: 0 additions & 13 deletions bower_components/normalize-css/bower.json

This file was deleted.

Loading

0 comments on commit d9489ed

Please sign in to comment.