Will Raxworthy

Results 29 comments of Will Raxworthy

Yep, in your `adapter.js` you can set the option for POST. ```js import { Adapter } from 'ember-graphql-adapter'; export default Adapter.extend({ httpMethod: 'POST' }); ```

Hey @jrock2004 Sounds good. Do you mean incoming or outgoing? Or both?

> I am just confused how I would create my models and adapters to match the graphql syntax like above. You can set up your ember models as normal and...

I wrote this on the community site: > Great article @jamonholmgren. Do you think iterating through the entire UI would cause performance issues down the road? > > If this...

motion-blitz looks good. I think we usually use JGProgressHUD and from memory @GantMan has a wrapper for it (?)

We have something similar to this in our application. I can share our implementation details for you.

here's what we have: ```hbs {{#as-calendar title="Calendar" dayStartingTime="00:00" dayEndingTime="24:00" occurrences=occurrences startFromDate=true timeSlotHeight="25" timeSlotDuration="0:30" onAddOccurrence=(action "calendarAddTimeslot") as |occurrence options|}} {{!-- some other stuff --}} {{/as-calendar}} ```

This shows the following: ![screen shot 2018-03-12 at 09 33 09](https://user-images.githubusercontent.com/94960/37275935-65a5ef54-25d8-11e8-9342-d2fff203b6ad.png)

Ah yeah. We had that as well. If i remember correctly, the reason it's happening is because moment treats 00:00 as both the current day and the day before. We...

We ended up not worrying about it because the majority of our scheduling is during work hours. Let me know if you figure something out though and we can try...