You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above defines an Entity, which can be used to query the todo/items server endpoint, like this:
import{Paris}from"@microsoft/paris";constparis=newParis();paris.getItemById(TodoItem,1).subscribe((todoItem:TodoItem)=>{console.log("Todo item with ID 1: ",todoItem);});