scandipwa/sales-graphql

Magneto 2 Sales related functionality extension

Installs: 72 390

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 5

Forks: 7

Open Issues: 2

Type:magento2-module

1.3.2 2023-04-12 15:48 UTC

This package is auto-updated.

Last update: 2025-02-26 16:10:36 UTC


README

Magneto 2 Sales related functionality extension

What`s inside?

This module provides GraphQl customization to exist one endpoints.

Customization endpoints

  • Allows filtering orders by entity_id
input CustomerOrdersFilterInput {
    entity_id: FilterStringTypeInput @doc(description: "Filters by order entity id.")
}
  • Returns boolean to define if order can be reordered and rss_link exist for it
type CustomerOrder {
    can_reorder: Boolean! @doc(description: "Defines if order can be reordered")
    rss_link: String @doc(description: "Represents rss link to subscribe on order status")
}
  • Return row subtotal price
interface OrderItemInterface {
   row_subtotal: Money! @doc(description: "The row subtotal price, including selected options")
}
  • Extend order products selected and entered options to return also downloadable links, bundle options and files