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
{
"path":["/pokemons",1],
"PUT":[{
"table":"skills",
"existing":"SELECT name,skill FROM skills WHERE name=$1",
"delete":"DELETE FROM skills WHERE name=$1 AND skill=$2",
"columns":{
"name":{"key":true, "source": 1},
"skill":{"key":true},
"damage":{}
}
},{
"table":"effectiveness",
"existing":"SELECT name,skill,vs FROM effectiveness WHERE name=$1",
"delete":"DELETE FROM effectiveness WHERE name=$1 AND skill=$2 AND vs=$3",
"columns":{
"name":{"key":true, "source": 1},
"skill":{"key":true},
"vs":{"key":true},
"effectiveness":{}
}
}]
}
The text was updated successfully, but these errors were encountered:
I would like to be able to PUT multiple CSJ in one time, separate by blank line to make sure that all of data that I want to PUT is consistent
Example
PUT /pokemons/Pikachu HTTP/1.1
Content-Type: application/csj
Payload:
Expected result
Suggest Configuration
The text was updated successfully, but these errors were encountered: