Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: handling serialized enum date in MongoDB effectively and more #457

Merged
merged 6 commits into from
Oct 29, 2024

Conversation

boscohyun
Copy link
Member

Examples

Case of product address 'ff6526b988ABDEEAA4D3Bf3e79cB681af4f929f5'

query {
  product(productId: "f0994e0c-0295-493d-a395-951ca7152954") {
    ... on ItemProduct {
       tradableItem {
        id
        itemType
        itemSubType
        elementalType
       }
    }
  }
}
{
  "data": {
    "product": {
      "tradableItem": {
        "id": 900109,
        "itemType": "CONSUMABLE",
        "itemSubType": "FOOD",
        "elementalType": "NORMAL"
      }
    }
  }
}

Case of product address '925A08670723Ab5B16F3Ca133bbf2D73DF4a1237'

query {
  product(productId: "adc9b9c8-ea71-4a56-9549-691f631a0b23") {
    ... on ItemProduct {
       tradableItem {
        id
        itemType
        itemSubType
        elementalType
       }
    }
  }
}
{
  "data": {
    "product": {
      "tradableItem": {
        "id": 10354002,
        "itemType": "EQUIPMENT",
        "itemSubType": "BELT",
        "elementalType": "WIND"
      }
    }
  }
}

@boscohyun boscohyun requested review from moreal, Atralupus and a team October 28, 2024 06:12
@boscohyun boscohyun self-assigned this Oct 28, 2024
@boscohyun boscohyun changed the title Fix/454 fix: handling serialized enum date in MongoDB effectively and more Oct 28, 2024
@boscohyun boscohyun merged commit 9fe4273 into planetarium:main Oct 29, 2024
7 checks passed
@boscohyun boscohyun deleted the fix/454 branch October 29, 2024 00:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

Handling a serialized enum type BsonValues in MongoDB effectively
1 participant