Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Request = { | |
ApiToken: ApiToken | |
ProjectId: ProjectId | |
StartingAt: ObjectId option | |
} | |
module Request = | |
let toJson request = | |
let (ProjectId projectId) = request.ProjectId | |
let baseJson = {| scope = {| project = projectId |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Code for accessing the DNAnexus api | |
/// https://documentation.dnanexus.com/developer/api/ | |
namespace DX.Api | |
open FSharp.Data | |
open FSharp.Data.HttpRequestHeaders | |
open Newtonsoft.Json | |
/// DNAnexus Search API | |
/// https://documentation.dnanexus.com/developer/api/search |