Merge pull request #4 from irvinesunday/is/paging

Adding odata.nextlink response object
This commit is contained in:
Irvine Sunday 2020-03-16 19:11:35 +03:00 committed by GitHub
commit b8eb57036b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,7 @@
using System.Collections.Generic;
using System.Linq;
using Microsoft.OData.Edm;
using Microsoft.OpenApi.Any;
using Microsoft.OpenApi.Models;
using Microsoft.OpenApi.OData.Common;
using Microsoft.OpenApi.OData.Edm;
@ -160,6 +161,13 @@ namespace Microsoft.OpenApi.OData.Operation
}
}
}
},
{
"'@odata.nextLink'",
new OpenApiSchema
{
Type = "string"
}
}
}
}