Intelliview API uses the graphql
for this API. graphql
is a way to request only that data which is going to be consumed by the client applications(iOS, Web etc). Every request uses a single url for all requests.
This webpage contains only singular examples related to specific query
and mutation
. But it can also be used to perform multiple queries.
- mutations
are a way to manipulate records on the Intelliview application.
- queries
are a way to fetch records from the Intelliview application.
Please check the detailed documentation
about the argument types, queries and their responses.
{
properties(take: 10){
edges{
id
name
}
pageInfo{
hasNextPage
currentPage
totalCount
}
}
}
{
property(id: 1){
id,
name
}
}
mutation{
addProperty(input:{
name: "Calibration Date",
type: text
}){
id
name
}
}
mutation{
editProperty(id: 1, input:{
name: "Calibration Date",
type: date
}){
id
name
}
}
{
property(id: 10){
id
name
}
assetType(id: 1){
id
name,
properties{
id
property{
name
}
}
}
}
If you want to learn more about graphql
you can check the GraphQL
official documentation.
These functions are responsible for the creation,modifications and deletions of the Alerts in Intelliview application
These functions are responsible for the creation,modifications and deletions of the AssetTypes in Intelliview application
These functions are responsible for the creation,modifications and deletions of the Assets in Intelliview application
These function manage the authentication requests for the intelliview application
These functions are responsible for the creation,modifications,deletions and filling the Checklists in Intelliview application
These functions are responsible for the creation,modifications,deletions,checkin and close the Checkouts in Intelliview application
These functions are responsible for the creation,modifications and deletions of the CustomReports in Intelliview application
These functions are responsible for the creation,modifications,deletion of the Locations in Intelliview application
These functions are perform different functionality without associating to a particular module in Intelliview application
Key | Value | Description |
---|---|---|
operations | {"query": "mutation uploadFile ($file: Upload!, $type: FileType) {uploadFile (file: $file, type: $type) {filename path url } }","variables": {"file":null,"type":"AssetFile"} } | |
map | {"a": ["variables.file"]} | |
a | ||
variables |
These functions are responsible for the creation,modifications,deletions,approval and receiving the Orders in Intelliview application
These functions are responsible for the creation,modifications and deletions of the ParLevels in Intelliview application
These functions are responsible for the creation,modifications,deletions,finalizing and closing the PickTicket in Intelliview application
These functions are responsible for the creation,modifications and deletions of the Property in Intelliview application
These functions are responsible for the creation of the RunLogs in Intelliview application
These functions are responsible for the creation,modifications and deletions of the ServiceCause in Intelliview application
These functions are responsible for the creation,modifications,deletions and closing the ServiceTickets in Intelliview application
These functions are responsible for the creation,modifications and deletions of the ServiceTypes in Intelliview application
These functions are responsible for the creation of the ShiftLogs in Intelliview application
These functions are responsible for the creation,modifications and deletions of the Vendors in Intelliview application
Key | Value | Type |
---|---|---|
url |