Class: Api::V2::WorkCompletionResource

Inherits:
BaseResource
  • Object
show all
Defined in:
app/resources/api/v2/work_completion_resource.rb

Overview

Note:

Access this resource via the /api/v2/work_completions/ endpoint.

Note:

This resource cannot be modified after creation: its endpoint will not accept PATCH requests.

For more information about JSON:API see the JSON:API Specifications or look at the JSONAPI::Resources package for Sequencescape's implementation of the JSON:API standard.

Examples:

POST request to create a WorkCompletion (by uuids - deprecated)

POST /api/v2/work_completions/
{
  "data": {
    "type": "work_completions",
    "attributes": {
      "submission_uuids": ["11111111-2222-3333-4444-555555666666"],
      "target_uuid": "33333333-4444-5555-6666-777777888888",
      "user_uuid": "99999999-0000-1111-2222-333333444444"
    }
  }
}

POST request to create a WorkCompletion using relationships

POST /api/v2/work_completions/
{
  "data": {
    "type": "work_completions",
    "relationships": {
      "submissions": {
          "data": [
            { "type": "submissions", "id": 1 }
          ]
      },
      "target": {
          "data": { "type": "labware", "id": 1 }
      },
      "user": {
          "data": { "type": "users", "id": 4 }
      }
    }
  }
}

GET request for all WorkCompletion resources

GET /api/v2/work_completions/

GET request for a WorkCompletion with ID 123

GET /api/v2/work_completions/123/

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseResource

apply_includes, creatable_fields, default_includes, #fetchable_fields, inclusions, resolve_relationship_names_to_relations, updatable_fields

Instance Attribute Details

#submission_uuids=(value) ⇒ Void (writeonly)

Deprecated.

Use the submissions relationship instead.

This is declared for convenience where the submissions are not available to set as a relationship. Setting this attribute alongside the submissions relationships will prefer the relationship value.

Parameters:

  • value (Array<String>)

    The UUIDs of the Submissions related to this WorkCompletion.

Returns:

  • (Void)

See Also:



69
# File 'app/resources/api/v2/work_completion_resource.rb', line 69

attribute :submission_uuids, writeonly: true

#submissionsArray<SubmissionResource>

Note:

This relationship is required.

An array of submissions which will be passed (although this is done through the request ids on the aliquots, not directly through the submissions). Setting this relationship alongside the submission_uuids attribute will override the attribute value.

Returns:



111
# File 'app/resources/api/v2/work_completion_resource.rb', line 111

has_many :submissions, write_once: true

#targetLabwareResource

Note:

This relationship is required.

The labware on which the library has been completed. Setting this relationship alongside the target_uuid attribute will override the attribute value.

Returns:

  • (LabwareResource)

    The Labware which this WorkCompletion is associated with.



118
# File 'app/resources/api/v2/work_completion_resource.rb', line 118

has_one :target, write_once: true

#target_uuid=(value) ⇒ Void (writeonly)

Deprecated.

Use the target relationship instead.

This is declared for convenience where the target Labware is not available to set as a relationship. Setting this attribute alongside the target relationship will prefer the relationship value.

Parameters:

  • value (String)

    The UUID of the Labware that this work completion targets.

Returns:

  • (Void)

See Also:



82
# File 'app/resources/api/v2/work_completion_resource.rb', line 82

attribute :target_uuid, writeonly: true

#userUserResource

Note:

This relationship is required.

The user performing the action Setting this relationship alongside the user_uuid attribute will override the attribute value.

Returns:

  • (UserResource)

    The User who initiated this WorkCompletion.



125
# File 'app/resources/api/v2/work_completion_resource.rb', line 125

has_one :user, write_once: true

#user_uuid=(value) ⇒ Void (writeonly)

Deprecated.

Use the user relationship instead.

This is declared for convenience where the User is not available to set as a relationship. Setting this attribute alongside the user relationship will prefer the relationship value.

Parameters:

  • value (String)

    The UUID of the User who initiated this work completion.

Returns:

  • (Void)

See Also:



95
# File 'app/resources/api/v2/work_completion_resource.rb', line 95

attribute :user_uuid, writeonly: true