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
Let's say, I have the following OAS content in components --> schema:
Book:
type: object
properties:
id:
type: number
example: 1
description: ID of the book
title:
type: string
example: Harry Potter
description: Title of the book
person:
description: Person who owns the book
allOf:
- $ref: '#/components/schemas/Person'
required:
- id
- title
- person
Does RESTler somehow respect the reference in schema Book to another schema? I have some error in my app that appears, when the person is deleted and the book retrieved. However, RESTler does not find the correct sequence DELETE person --> GET book. In the grammar.json I don't see anything special. Is this something, what RESTler can't do?
The text was updated successfully, but these errors were encountered:
Description
Let's say, I have the following OAS content in components --> schema:
Does RESTler somehow respect the reference in schema Book to another schema? I have some error in my app that appears, when the person is deleted and the book retrieved. However, RESTler does not find the correct sequence DELETE person --> GET book. In the
grammar.json
I don't see anything special. Is this something, what RESTler can't do?The text was updated successfully, but these errors were encountered: