jambardnishvili/magento2-customer-uuid

Maintainers

Package info

github.com/jambardnishvili/magento2-customer-uuid

Type:magento2-module

pkg:composer/jambardnishvili/magento2-customer-uuid

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-02-27 08:39 UTC

This package is auto-updated.

Last update: 2026-04-27 09:01:10 UTC


README

Magento 2 module that adds uuid customer attribute, exposes it on GraphQL Customer, and includes it in the admin customer grid.

Installation

If distributed as a package:

composer require jambardnishvili/module-customer-uuid

Then install:

bin/magento setup:upgrade

GraphQL Usage

Authenticate as a customer, then query:

query {
  customer {
    firstname
    email
    uuid
  }
}

Tests

Run module unit tests:

vendor/bin/phpunit app/code/Vendor/CustomerUuid/Test/Unit