GraphQL Day 004 : Subscriptions

So far we have seen Queries and Mutations in GraphQL. It is now time to look into third and final key component of the triage - Subscriptions. Subscriptions allow GraphQL servers to send real time updates to subscribed clients when particular events occur. This allows clients to support real-time functionality by having the servers push the updates … Continue reading GraphQL Day 004 : Subscriptions

Tristate checkbox in Vue JS

HTML 5 does support checkboxes with tri-state (true, false, indeterminate). Indeterminate refers to a state where it is not either checked or unchecked. This works fine, however, once an checkbox moves from indeterminate to true/false, it can not go back to indeterminate. This was when I had to research a bit (and I did not want to use … Continue reading Tristate checkbox in Vue JS