@@ -100,15 +100,17 @@ Execute mySql INSERT command. Example of adding new category named "Functions":
This should print something like this:
api_get_attribute GET ANY ANY /api/attributes/{id}.{_format}
api_get_attribute_children GET ANY ANY /api/attributes/{id}/children.{_format}
api_get_attribute_properties GET ANY ANY /api/attributes/{id}/properties.{_format}
api_get_attributes GET ANY ANY /api/attributes.{_format}
api_post_attribute POST ANY ANY /api/attributes.{_format}
api_put_attribute PUT ANY ANY /api/attributes/{id}.{_format}
api_delete_attribute DELETE ANY ANY /api/attributes/{id}.{_format}
api_patch_attribute PATCH ANY ANY /api/attributes/{id}.{_format}
api_get_tsref GET ANY ANY /api/tsref.{_format}
api_get_attribute GET ANY ANY /api/attributes/{id}.{_format}
api_get_type GET ANY ANY /api/types/{urlName}.{_format}
api_get_attribute_children GET ANY ANY /api/attributes/{id}/children.{_format}
api_get_attribute_properties GET ANY ANY /api/attributes/{id}/properties.{_format}
api_get_attributes GET ANY ANY /api/attributes.{_format}
api_post_attribute POST ANY ANY /api/attributes.{_format}
api_put_attribute PUT ANY ANY /api/attributes/{id}.{_format}
api_delete_attribute DELETE ANY ANY /api/attributes/{id}.{_format}
api_patch_attribute PATCH ANY ANY /api/attributes/{id}.{_format}
api_get_tsref GET ANY ANY /api/tsref.{_format}
api_get_categories GET ANY ANY /api/categories.{_format}
#### Test with Postman
...
...
@@ -171,5 +173,4 @@ Here is list of commands that are useful for development of Symfony projects.
`mysqldump -t -u userName -ppassword dbName tableName` - dumps mySql for backup. Useful to see mySql statements which represent current database state.